不知此代码为何无法实现,求教,谢谢!
<!DOCTYPE html>
<html>
<head>
<title>浏览器对象</title>
<meta http-equiv="Content-Type" content="text/html; charset=gkb"/>
</head>
<script type="text/javascript">
function jishu(){
var num=document.detElementById("second");
num=num-1;
document.detElementById("second")=num;
if(num==1){
window.open('www.imooc.com','_blank');
}
else { setTimeout(jishu,1000);}
//获取显示秒数的元素,通过定时器来更改秒数。
//通过window的location和history对象来控制网页的跳转。
}
window.onload=jishu;
</script>
<body>
<!--先编写好网页布局-->
<strong>操作成功<br>
<br>
<b id="second">5</b>
</strong>秒后回到主页<a href="www.imooc.com">返回</a>
</body>
</html>