关于JS代码汇总收藏大全

来源:互联网  作者:本站整理
摘要:1.oncontextmenu="window.event.returnvalue=false"将彻底屏蔽鼠标右键 tableborderoncontextmenu=return(false)>td>no/table>可…

23.怎样去掉图片链接点击后,图片周围的虚线?
<ahref="#"onFocus="this.blur()"><imgsrc="logo.jpg"border=0></a>

24.电子邮件处理提交表单
<formname="form1"method="post"action="mailto:****@***.com"enctype="text/plain">
<input type=submit>
</form>

25.在打开的子窗口刷新父窗口的代码里如何写?
window.opener.location.reload()

26.如何设定打开页面的大小
<bodyonload="top.resizeTo(300,200);">
打开页面的位置<bodyonload="top.moveBy(300,200);">

27.在页面中如何加入不是满铺的背景图片,拉动页面时背景图不动
<style>
body
{background-image:url(logo.gif);background-repeat:no-repeat;

background-position:center;background-attachment:fixed}
</style>

28.检查一段字符串是否全由数字组成
<scriptlanguage="javascript"><!--
functioncheckNum(str){returnstr.match(//D/)==null}
alert(checkNum("1232142141"
alert(checkNum("123214214a1"
//--></script>

29.获得一个窗口的大小
document.body.clientWidth;document.body.clientHeight

30.怎么判断是否是字符
if(/[^/x00-/xff]/g.test(s))alert("含有汉字";
elsealert("全是字符";

31.TEXTAREA自适应文字行数的多少
<textarearows=1name=s1cols=27onpropertychange="this.style.posHeight=this.scrollHeight">
</textarea>
32.日期减去天数等于第二个日期
<scriptlanguage=javascript>
functioncc(dd,dadd)
{
//可以加上错误处理
vara=newDate(dd)
a=a.valueOf()
a=a-dadd*24*60*60*1000
a=newDate(A)
alert(a.getFullYear()+"年"+(a.getMonth()+1)+"月"+a.getDate()+"日"
}
cc("12/23/2002",2)
</script>

33.选择了哪一个Radio
<HTML><scriptlanguage="vbscript">
functioncheckme()
foreachobinradio1
ifob.checkedthenwindow.alertob.value
next
endfunction
</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.脚本永不出错
<SCRIPTLANGUAGE="javascript">
<!--Hide
functionkillErrors(){
returntrue;
}
window.onerror=killErrors;
//-->
</SCRIPT>

35.ENTER键可以让光标移到下一个输入框
<inputonkeydown="if(event.keyCode==13)event.keyCode=9">

36.检测某个网站的链接速度:
把如下代码加入<body>区域中:
<scriptlanguage=javascript>
tim=1
setInterval("tim++",100)
b=1
varautourl=newArray()
autourl[1]="http://www.njcatv.net/";
autourl[2]="javacool.3322.net"
autourl[3]="http://www.sina.com.cn/";
autourl[4]="http://www.nuaa.edu.cn/";
autourl[5]=http://www.cctv.com/;
functionbutt(){
document.write("<formname=autof>"
for(vari=1;i<autourl.length;i++)
document.write("<input type=textname=txt"+i+"size=10value=测试中……>=》
<input type=text name=url"+i+" size=40>=》
<input type=buttonvalue=GO

onclick=window.open(this.form.url"+i+".value)><br>"
document.write("<input type=submitvalue=刷新></form>"
}
butt()
functionauto(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++
}
functionrun(){for(vari=1;i<autourl.length;i++)document.write("<img
src=http://"+autourl+"/"+Math.random()+"width=1height=1
onerror=auto(http://";+autourl+"`)>"}
run()</script>

37.各种样式的光标
auto:标准光标
default:标准箭头
hand:手形光标
wait:等待光标
text:I形光标
vertical-text:水平I形光标
no-drop:不可拖动光标
not-allowed:无效光标
help:?帮助光标
all-scroll:三角方向标
move:移动标
crosshair:十字标
e-resize
n-resize
nw-resize
w-resize
s-resize
se-resize
sw-resize

【相关文章】好搜一下
“网上邻居”无法互访问题解决方法大全

“网上邻居”无法互访问题解决方法大全

“网上邻居”无法互访的问题实在是太常见了,无论在学校,网吧还是家里多台电脑联机,…