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

js定时器window.setTimeout和setInterval

时间:2017-01-09 12:55:10      阅读:250      评论:0      收藏:0      [点我收藏+]

标签:时间   interval   为知笔记   ;;   space   white   nbsp   back   tco   

window.setTimeout(function(){
                            document.getElementById("editorindex").contentWindow.setContent(data.content);

                                //调用iframe里的setContent()方法


                        },800);

setTimeout 和setInterval的功能都是经过某一个时间段后发生某件指定的事件或者方法。

如window.setTimeout(“sleep()”,5000);指的是在5000ms后去执行sleep方法,setTimeout也可以直接写方法体,如window.setTimeout(sleep,5000)

而setInterval不行。

window.setInterval("sleep()",5000)指的是每隔5000ms循环执行sleep()方法。

clearInterval()是用来解除循环的


 

 



js定时器window.setTimeout和setInterval

标签:时间   interval   为知笔记   ;;   space   white   nbsp   back   tco   

原文地址:http://www.cnblogs.com/samwang88/p/36f80a66a344a56607d3bde1bfa78227.html

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