JS中使用一次性定时器如何暂停?谁可以有代码讲解一下?
展开全部
用 clearTimeout() 或 clearInterval(),如:
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gbk" />
<script>
var t = setTimeout(function() {
alert("我弹出了啦!");
}, 5000);
function stop() {
clearTimeout(t);
}
</script>
</head>
<body>
<div>如果不点此按钮,5秒后跳到弹出提示窗口!<div>
<input type="button" value="停止弹出" onclick="stop()" />
</body>
</html>
追问
谢谢😜
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询