我写的这份答案,我认为需要关闭定时器,你们觉得呢?
<!DOCTYPE html>
<html>
<head>
<title>浏览器对象</title>
<meta http-equiv="Content-Type" content="text/html; charset=gkb"/>
</head>
<body>
<!--先编写好网页布局-->
<h1>操作成功</h1>
<span id="second"></span>秒回到主页<a href="javascript:myback()">返回</a>
<script type="text/javascript">
//获取显示秒数的元素,通过定时器来更改秒
var num=5;
//给定一个初始值,不要写死,以后要是不是5秒了呢,全部都改一遍吗
document.getElementById("second").innerHTML=num;
var flag = 0;
function getSeconds(){
num--;
document.getElementById("second").innerHTML=num;
if(num <= 0){
location.assign("https://www.imooc.com/");
//我觉得这个定时器用完记得取消吧
clearInterval(flag);
}
}
flag = setInterval("getSeconds()",1000);
function myback(){
window.history.back();
}
</script>
</body>
</html>