23、怎样去掉图片链接点击后,图片周围的虚线?
<a href="#" onFocus="this.blur()"><img src="logo.jpg" border=0></a>
24、电子邮件处理提交表单 Www@Chinaz@com
以下为引用的内容:
<form name="form1" method="post" action="mailt****@***.com" 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> 中国.站.长站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、脚本永不出错
head之间以下为引用的内容:
<SCRIPT LANGUAGE="JavaScript">
<!-- Hide function killErrors() { return true; } window.onerror = killErrors; // --> </SCRIPT>
35、ENTER键可以让光标移到下一个输入框 站长.站
<input onkeydown="if(event.keyCode==13)event.keyCode=9">
发表评论
评论列表(条)