Posts Tagged “setInterval”

JS中setTimeout与setInterval的区别

timeId=window.setTimeout(“method()”,1000);     window.clearTimeout(timeId);定时执行 timeId=window.setInterval(“method()”,1000);     window.clearInterval(timeId);循环执行

Read more »