1、无提示关闭窗口
<inputtype="button"onClick="window.opener='';window.close();"value="IE6最简单的无提示关闭窗口">
2、防止被人iframe
if(top.location!=self.location)
{
top.location.href="http://mand('Copy')">选中我并复制我</span>
15、产生随机数
VB的Rnd函数产生的随机数范围为0-1。假如要从(min,max)这个范围内随机抽取一个数,具体公式如下:随机数=(max-min)*Rnd()+min,min和max可以是任意整数,只是min<max。
16、限制文本框只能输入正整数
<inputonKeyUp="this.value=this.value.replace(/[^\d]/g,'')">
