bom延迟方法.间隔执行

Posted 猫九丶

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了bom延迟方法.间隔执行相关的知识,希望对你有一定的参考价值。

<script>
// 延时方法
// window.setTimeout(sto,3000);
// function sto(){
// alert(‘123‘);
// window.setTimeout(sto,3000);
// }
// 间隔执行
var c1 = 0;
var c2 = 0;
var arr = Array();
arr.push(window.setInterval("sit1()", 500));
arr.push(window.setInterval("sit2()", 500));

function sit1() {
document.getElementById(‘s1‘).innerText = ++c1;
}

function sit2() {
document.getElementById(‘s2‘).innerText = ++c2;
}

function stop() {
for(var i in arr) {
window.clearInterval(arr[i]);
}
}
// window.clearInterval(1);
// alert(x);
// alert(y);
</script>

以上是关于bom延迟方法.间隔执行的主要内容,如果未能解决你的问题,请参考以下文章

JavaScript进阶

JS7(浏览器对象)

java 每间隔一段时间执行一段代码

《Javascript权威指南》学习笔记之十五:BOM之源---window对象

常用函数

js的间隔延迟以及dom操作