JavaScript超时调用间歇调用
Posted 5arno
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了JavaScript超时调用间歇调用相关的知识,希望对你有一定的参考价值。
超时调用
//onclick设置按钮点击之后要执行的代码地址,fnFun就是要执行的代码函数
<input type="button" value="暂停" onclick="fnFun()">
<script>
var fnFun2 = function (){
console.log('fnFun2');
}
//参数一:超时后会被调用的函数地址
//参数二:等待时间
//返回值:定时器的ID,可以通过这个ID来终止这个定时器
var id = setTimeout(fnFun2,5000);
var fnFun = function (){
console.log('hello');
//终止这个定时器,参数是定时器ID
clearTimeout(id);
}
console.log('hello world');
</script>
间歇调用
//setInterval,是每隔一段时间就就会调用函数一次
<input type="button" value="暂停" onclick="fnFun()">
<script>
var fnFun2 = function (){
console.log('fnFun2');
}
//设置间歇调用,定时器
var id = setInterval(fnFun2,1000);
var fnFun = function (){
console.log('hello');
//清除定时器
clearInterval(id);
}
console.log('hello world');
</script>
以上是关于JavaScript超时调用间歇调用的主要内容,如果未能解决你的问题,请参考以下文章