代码拉取完成,页面将自动刷新
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Pause/Resume Example</title>
<script>
document.addEventListener('DOMContentLoaded', function() {
let isPaused = true; // 初始状态为暂停
let counter = 0;
let intervalId;
function startOrPause() {
if (isPaused) {
// 开始执行
intervalId = setInterval(function() {
if (!isPaused) {
counter++;
document.getElementById('counter').textContent = counter;
}
}, 1000); // 每秒更新一次计数器
isPaused = false; // 设置为非暂停状态
document.getElementById('button').textContent = '暂停';
} else {
// 暂停执行
clearInterval(intervalId); // 清除定时器
isPaused = true; // 设置为暂停状态
document.getElementById('button').textContent = '开始';
}
}
// 绑定按钮点击事件
document.getElementById('button').addEventListener('click', startOrPause);
let flag = true;
let id;
function pause(){
if(flag){
flag = false;
id= setInterval(function(){},1000)
}else{
clearInterval(id)
flag=true
}
}
document.querySelector("#sss").addEventListener("click",pause)
});
</script>
</head>
<body>
<button id="button">开始</button>
<p>计数器: <span id="counter">0</span></p>
<button id="sss">第二个</button>
</body>
</html>
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。