[02--DOM] 取消定时器
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Title</title>
<!--我们设置了定时以后,可能之后有些操作需要去清除这个定时,所以我们要清除-->
<!--这时候,我们用clearTimer(t),t是设置定时的时候,我们接收到的t的值-->
<script>
function f() {
alert("你能看到嘛?")
}
var t=setTimeout(f,3000)
setTimeout(f,3000)
clearTimeout(t)
</script>
</head>
<body>
</body>
</html>