我想知道在使用setInterval之后是否可以显式停止函数。
<script>
setInterval(function(){document.write("Hello");},1000);
</script>
答案 0 :(得分:4)
var timer = setInterval(function(){
document.write("Hello");
if (someCondition) {
clearInterval(timer); // this stops the interval
}
},1000);