为啥无限打开网页,神烦,没找到原因
<!DOCTYPE html>
<html>
<head>
<title>浏览器对象</title>
<meta http-equiv="Content-Type" content="text/html; charset=gkb"/>
</head>
<body>
<!--先编写好网页布局-->
<head>
<title>浏览器对象</title>
<meta http-equiv="Content-Type" content="text/html; charset=gkb"/>
</head>
<body>
<!--先编写好网页布局-->
<h2>操作成功</h2>
<p>
<span id="timer"></span>秒返回到主页
<a href="javascript:back()" target="_blank">返回</a>
</p>
<script type="text/javascript">
var num1=10;
var num2=document.getElementById("timer");
function wower(){
if(num1== 0){
clearInterval(times);
window.open("https://www.imooc.com/");
}
else{
num2.innerHTML=num1;
--num1;
}
}
var times=setInterval(wower,1000);
//获取显示秒数的元素,通过定时器来更改秒数。
//通过window的location和history对象来控制网页的跳转。
//获取显示秒数的元素,通过定时器来更改秒数。
//通过window的location和history对象来控制网页的跳转。
</script>
</body>
</html>