1、无提示关闭窗口
<input type="button" onClick="window.opener = '';window.close();" value="IE6最简单的无提示关闭窗口" >

2、防止被人iframe
if (top.location != self.location)
{
  top.location.href="http://www.34do.net";
}

3、判断一个对象存在不存在
document.all("a")==null(不存在)

4、弹出子窗口
window.open ('default.asp', 'newwindow', 'height=100, width=400, top=0, left=0, toolbar=no, menubar=no, scrollbars=no, resizable=no,location=no, status=no')

5、打开模态窗口
window.showModalDialog('default.asp',window,'help: No; resizable: No; status: No;scrollbars:No;center: Yes;dialogWidth:width;dialogHeight:height;')

6、弹出的子窗口刷新父窗口
window.opener.opener=null;
window.opener.location.reload();

7、模态窗口刷新父窗口
window.parent.dialogArguments.document.execCommand('Refresh');

8、一个js文件包含另外一个js文件
document.write('<script src="/b_trade/public/new/public.js"><\/script>');

9、让文字竖着写
<td style="Writing-mode:tb-rl;">佛罗伦</td>

10、iframe引用自己
window.parent.document.getElementById("iframe_dg")
这样在iframe文件里就可以操作它自己,比如:window.parent.document.getElementById("iframe_dg").height=200

11、根据内容自动调整iframe高度
function autoSetiframeSize()
{
  var obj=self.parent.parent.document.all[self.name];
  if(obj!=null)
  {
    self.parent.parent.document.all[self.name].style.pixelHeight=self.document.body.scrollHeight+5;
  }
}
必须定义iframe的name属性
<iframe >选中我并复制我</span>

15、产生随机数
VB的Rnd函数产生的随机数范围为0-1。假如要从(min,max)这个范围内随机抽取一个数,具体公式如下: 随机数 = (max - min) * Rnd() + min,min和max可以是任意整数,只是min<max。

 

16、页面宽高

网页可见区域宽:document.body.offsetWidth      (包括边线的宽)  
     网页可见区域高:document.body.offsetHeight      (包括边线的宽)  
     网页正文全文宽:document.body.scrollWidth  
     网页正文全文高:document.body.scrollHeight  
     网页被卷去的高:document.body.scrollTop  
     网页被卷去的左:document.body.scrollLeft  
     网页正文部分上:window.screenTop  
     网页正文部分左:window.screenLeft  
     屏幕分辨率的高:window.screen.height  
     屏幕分辨率的宽:window.screen.width  
     屏幕可用工作区高度:window.screen.availHeight  
     屏幕可用工作区宽度:window.screen.availWidth
var t="";
t+="\n网页可见区域宽:"+ document.body.clientWidth;  
t+="\n网页可见区域高:"+ document.body.clientHeight;  
t+="\n网页可见区域宽:"+ document.body.offsetWidth;//      (包括边线的宽)  
t+="\n网页可见区域高:"+ document.body.offsetHeight;//      (包括边线的宽)  
t+="\n网页正文全文宽:"+ document.body.scrollWidth;  
t+="\n网页正文全文高:"+ document.body.scrollHeight;  
t+="\n网页被卷去的高:"+ document.body.scrollTop;  
t+="\n网页被卷去的左:"+ document.body.scrollLeft;  
t+="\n网页正文部分上:"+ window.screenTop;  
t+="\n网页正文部分左:"+ window.screenLeft;  
t+="\n屏幕分辨率的高:"+ window.screen.height;  
t+="\n屏幕分辨率的宽:"+ window.screen.width;  
t+="\n屏幕可用工作区高度:"+ window.screen.availHeight;  
t+="\n屏幕可用工作区宽度:"+ window.screen.availWidth;

t+="\n鼠标X位置:"+ event.clientX;
t+="\n鼠标Y位置:"+ event.clientY;

注意,在使用了W3C标准的网页中,document.body.scrollTop和document.body.scrollLeft会失效,这时要用 document.documentElement.scrollTop 和document.documentElement.scrollLeft。 

 

17.示例showMessage()

>

 

 

 

相关文章:

  • 2022-12-23
  • 2021-08-01
  • 2021-09-12
  • 2021-12-27
  • 2021-09-18
猜你喜欢
  • 2021-11-02
  • 2022-12-23
  • 2021-06-07
  • 2021-11-27
  • 2021-09-21
  • 2022-01-13
  • 2022-01-11
相关资源
相似解决方案