关于两种定时器的打开关闭和窗口打开关闭

这一章主要讲讲定时器的打开和关闭以及窗口的打开和关闭。
定时器主要分为两种。
其一,setTimeout,在指定时间只执行一次;

<script>  
    //定时器 异步运行  
    function hello(){  
       alert("hello");  
    }  
    //使用方法名字执行方法  
    var t1 = window.setTimeout(hello,1000);  
    var t2 = window.setTimeout("hello()",3000);//使用字符串执行方法  
    window.clearTimeout(t1);//去掉定时器  
</script>   

其二,setInterval,在指定时间循环执行。

<script>   
     //实时刷新时间单位为毫秒  
    var timer1 = window.setInterval('refreshQuery()',8000);         
    window.clearInterval(timer1);//清除定时器
</script>   

关于窗口的打开有两种方式 :
其一,是链接的跳转,不打开新页面: <a href="a.html"></a> ,相当于 window.location.href = "a.html";
其二,是新窗口打开<a href="a.html" target="_blank"></a> ,相当于window.open("a.html");

关于window.open()的窗口关闭使用window.close()

var myWin=window.open('http://www.a.com'); //将新打的窗口对象,存储在变量myWin中
myWin.close()

关于window.open的参数,详情如下:

window.open('http://www.a.com','_blank','width=300,height=200,menubar=no,toolbar=no, status=no,scrollbars=yes')
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值