码迷,mamicode.com
首页 > Windows程序 > 详细

js之window

时间:2020-03-28 18:21:11      阅读:85      评论:0      收藏:0      [点我收藏+]

标签:打开   lan   var   set   interval   time   超时   top   open   

1.获得窗口的位置

 var left = window.screenLeft || window.screenX;
 var top = window.screenTop || window.screenY;

2.获得窗口的大小

 var width = document.documentElement.clientWidth || document.body.clientWidth;
 var height = document.documentElement.clientHeight || document.body.clientHeight;

3.窗口的打开和关闭

   var window1 = window.open("http://www.baidu.com",
            "_blank",
            "height=400,width=400,top=10,left=10,resizable=yes");
        window1.close();

4. 超时调用 setTimeOut(fn,500)

5.间隔调用 setInterval(fn,500)

清除间隔调用

int timer = setInterval(fn,500);

clearInterVal(timer);rrrr5f

6.系统对话框

alert(‘hello world!‘);

confirm(‘Are you sure?‘);  确认框

prompt(‘Are you sure?‘,‘Michael‘); 提示框

 

js之window

标签:打开   lan   var   set   interval   time   超时   top   open   

原文地址:https://www.cnblogs.com/xiaoxinstart/p/12588301.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!