Result Size: 625 x 534
x
 
<!DOCTYPE html>
<html>
<body>
<p>点击“试一试”。 等待 3 秒。 该页面将提示“你好”。</p>
<p>单击“停止”以阻止执行第一个函数。</p>
<p>(您必须在 3 秒结束前单击“停止”。)</p>
<button onclick="myVar = setTimeout(myFunction, 3000)">试一试</button>
<button onclick="clearTimeout(myVar)">停止它</button>
<script>
function myFunction() {
  alert("Hello");
}
</script>
</body>
</html>