JQuery 定时任务

执行一次的定时任务

执行方法 setTimeout只执行一次。
第一种是:window.setTimeout 。

var t1 = window.setTimeout(hello,1000); 	// 使用方法名字执行 一秒后执行 hello 方法
var t2 = window.setTimeout("hello()",3000); // 使用字符串执行方法。
window.clearTimeout(t1);		//	去掉定时器 

执行多次的定时任务

重复执行某个方法 setInterval重复执行。
第二种是:window.setInterval 。

### 每2秒执行一次
var ref = setInterval(function(){
    console.log("每2秒执行一次");
},2000);
### 阻止定时刷新
window.clearInterval(ref);

你可能感兴趣的:(javaScript)