PHP程序员站--PHP编程开发平台
 当前位置:主页 >> 网页制作 >> HTML >> 

40个网页常用小代码

40个网页常用小代码

来源:互联网  作者:未知  发布时间:2008-01-02
1、 oncontextmenu=window.event.returnValue=false

29、获得一个窗口的大小

document.body.clientWidth; document.body.clientHeight

30、怎么判断是否是字符 

以下为引用的内容:
if (/[^/x00-/xff]/g.test(s)) alert("含有汉字");
else alert("全是字符");

31、TEXTAREA自适应文字行数的多少 

以下为引用的内容:
<textarea rows=1 name=s1 cols=27 onpropertychange="this.style.posHeight=this.scrollHeight"></textarea>

 

32、日期减去天数等于第二个日期 

以下为引用的内容:
<script language=Javascript>
function cc(dd,dadd)
{
//可以加上错误处理
var a = new Date(dd)
a = a.valueOf()
a = a - dadd * 24 * 60 * 60 * 1000
a = new Date(a)
alert(a.getFullYear() + "年" + (a.getMonth() + 1) + "月" + a.getDate() + "日")
}
cc("12/23/2002",2)
</script>

33、选择了哪一个Radio

以下为引用的内容:
<HTML><script language="vbscript">
function checkme()
for each ob in radio1
if ob.checked then window.alert ob.value
next
end function
</script><BODY>
<INPUT name="radio1" type="radio" value="style" checked>Style
<INPUT name="radio1" type="radio" value="barcode">Barcode
<INPUT type="button" value="check" onclick="checkme()">
</BODY></HTML>


34、脚本永不出错

以下为引用的内容:
<SCRIPT LANGUAGE="JavaScript">
<!-- Hide
function killErrors() {
return true;
}
window.onerror = killErrors;
// -->
</SCRIPT>

 

35、ENTER键可以让光标移到下一个输入框 

<input onkeydown="if(event.keyCode==13)event.keyCode=9">

36、检测某个网站的链接速度: 

把如下代码加入<body>区域中:

以下为引用的内容:

<script language=Javascript>
tim=1
setInterval("tim++",100)
b=1 

var autourl=new Array()
autourl[1]="www.njcatv.net"
autourl[2]=www.phperz.com
autourl[3]="www.sina.cn"
autourl[4]="www.nuaa.edu.cn"
autourl[5]="www.cctv"

function butt(){
document.write("<form name=autof>")
for(var i=1;i<autourl.length;i++)
document.write("<input type=text name=txt"+i+" size=10 value=测试中……> =》<input type=text  name=url"+i+" size=40> =》<input type=button value=GO  onclick=window.open(this.form.url"+i+".value)><br>")
document.write("<input type=submit value=刷新></form>")
}
butt()
function auto(url){
document.forms[0]["url"+b].value=url
if(tim>200)
{document.forms[0]["txt"+b].value="链接超时"}
else
{document.forms[0]["txt"+b].value="时间"+tim/10+"秒"}
b++
}
function run(){

for(var i=1;i<autourl.length;i++)document.write("<img src=http://"+autourl+"/"+Math.random()+" width=1 height=1 onerror=auto('http://"+autourl+"')>")

}
run()

</script> 
 

Tags: 代码   网页   input   function    
最新文章
推荐阅读
月点击排行榜