码迷,mamicode.com
首页 > 其他好文 > 详细

setInterval(),setTimeout(),location.reload(true)

时间:2014-12-12 16:22:04      阅读:145      评论:0      收藏:0      [点我收藏+]

标签:style   blog   http   io   ar   color   os   使用   sp   

1,setInterval()

setInterval()方法可以按照指定的周期来调用函数或表达式,他会不停地调用函数,直到调用clearInterval()方法或窗口关闭。由setInterval()返回的ID值,可用作clearInterval()的参数。

语法:

var id = setInterval(code,millisec);

clearInterval(id);

实例:

bubuko.com,布布扣
 1 <html>
 2 <body>
 3 
 4 <input type="text" id="clock" size="35" />
 5 <script language=javascript>
 6 var int=self.setInterval("clock()",50)
 7 function clock()
 8   {
 9   var t=new Date()
10   document.getElementById("clock").value=t
11   }
12 </script>
13 </form>
14 <button onclick="int=window.clearInterval(int)">
15 Stop interval</button>
16 
17 </body>
18 </html>
View Code

2,setTimeout()

setTimeout()方法用于在指定的时间后调用函数或表达式,他只执行一次code。

语法:

SetTimeout(code,millisec);

setTimeout()只调用一次code。如果多次调用,需要使用setinterval()或code自己调用setTimeout()。

实例:

bubuko.com,布布扣
 1 <html>
 2 <head>
 3 <script type="text/javascript">
 4 function timedMsg()
 5 {
 6 var t=setTimeout("alert(‘5 seconds!‘)",5000)
 7 }
 8 </script>
 9 </head>
10 
11 <body>
12 <form>
13 <input type="button" value="Display timed alertbox!"
14 onClick="timedMsg()">
15 </form>
16 <p>Click on the button above. An alert box will be
17 displayed after 5 seconds.</p>
18 </body>
19 
20 </html>
View Code

3,location.reload(true)

s

setInterval(),setTimeout(),location.reload(true)

标签:style   blog   http   io   ar   color   os   使用   sp   

原文地址:http://www.cnblogs.com/usa007lhy/p/4159683.html

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