JavaScript实用技巧集锦(3),JavaScript实用技巧集锦(3)
【 tulaoshi.com - Javascript 】
21.让弹出窗口总是在最上面:
<body onblur="this.focus();"
22.不要滚动条?
让竖条没有:
<body style="overflow:scroll;overflow-y:hidden"
让横条没有:
<body style="overflow:scroll;overflow-x:hidden"
两个都去掉?更简单了
<body scroll="no"
23.怎样去掉图片链接点击后,图片周围的虚线?
<a href="#" onFocus="this.blur()"<img src="http://img.tulaoshi.com/attachment/portal/chinazcj/2005-11/20/05112013390229092.jpg" border=0
24.电子邮件处理提交表单
(本文来源于图老师网站,更多请访问http://www.tulaoshi.com/javascript/)<form name="form1" method="post" action="mailto:****@***.com" enctype="text/plain"
<input type=submit
25.在打开的子窗口刷新父窗口的代码里如何写?
window.opener.location.reload()
26.如何设定打开页面的大小
<body onload="top.resizeTo(300,200);"
打开页面的位置<body onload="top.moveBy(300,200);"
27.在页面中如何加入不是满铺的背景图片,拉动页面时背景图不动
<STYLE
body
{background-image:url(logo.gif); background-repeat:no-repeat;
background-position:center;background-attachment: fixed}
28. 检查一段字符串是否全由数字组成
<script language="Javascript"<!--
function checkNum(str){return str.match(//D/)==null}
alert(checkNum("1232142141"))
alert(checkNum("123214214a1"))
// --
29. 获得一个窗口的大小
document.body.clientWidth; document.body.clientHeight
30. 怎么判断是否是字符
if (/[^/x00-/xff]/g.test(s)) alert("含有汉字");
else alert("全是字符");
来源:http://www.tulaoshi.com/n/20160129/1482894.html
看过《JavaScript实用技巧集锦(3)》的人还看了以下文章 更多>>