以下为引用的内容: <script> function look(){ if(event.shiftKey) alert("禁止按Shift键!"); //可以换成ALT CTRL } document.onkeydown=look; </script> |
18、网页不会被缓存
以下为引用的内容: <META HTTP-EQUIV="pragma" CONTENT="no-cache"> 或者<META HTTP-EQUIV="expires" CONTENT="0"> |
19、怎样让表单没有凹凸感?
<input type=text style="border:1 solid #000000">
<input type=text style="border-left:none; border-right:none; border-top:none; border-bottom: 1 solid #000000"></textarea>
20、<div><span>&<layer>的区别?
<div>(division)用来定义大段的页面元素,会产生转行
<span>用来定义同一行内的元素,跟<div>的唯一区别是不产生转行
<layer>是ns的标记,ie不支持,相当于<div>
21、让弹出窗口总是在最上面:
<body onblur="this.focus();">
22、不要滚动条?
让竖条没有:
以下为引用的内容: <body style='overflow:scroll;overflow-y:hidden'> </body> |
让横条没有:
以下为引用的内容: <body style='overflow:scroll;overflow-x:hidden'> </body> |
两个都去掉?更简单了
以下为引用的内容: <body scroll="no"> </body> |
23、怎样去掉图片链接点击后,图片周围的虚线?
<a href="#" onFocus="this.blur()"><img src="logo.jpg" border=0></a>
24、电子邮件处理提交表单
以下为引用的内容: <form name="form1" method="post" action="mailt****@***" enctype="text/plain"> <input type=submit> </form> |
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} </STYLE> |
28、检查一段字符串是否全由数字组成
以下为引用的内容: <script language="Javascript"><!-- function checkNum(str){return str.match(//D/)==null} alert(checkNum("1232142141")) alert(checkNum("123214214a1")) // --></script> |