猿问

如何设置一个定时关闭的按钮?感激不尽

我想点击按钮a开启定时器,并3秒后关闭定时器functiontablar(){setInterval(function(){document.getElementById('tabla').play();},100);};$(".a").click(function(){tablar();clearInterval(tablar,3000);});
森栏
浏览 617回答 2
2回答

森林海

$(".djstart-bottoma").click(function(){vartimer=null;timer=setInterval(function(){//yourcode},100)setTimeout(function(){clearInterval(timer)},3000)});

慕尼黑8549860

d1.onclick=function(){vartimer=setInterval(function(){console.log(123)},100);setTimeout(function(){clearInterval(timer)timer=null},3000)}
随时随地看视频慕课网APP

相关分类

JavaScript
我要回答