为什么无法跳转网页?倒计时5秒后就空白了
<html>
<head>
<title>浏览器对象</title>
<meta http-equiv="Content-Type" content="text/html; charset=gkb"/>
</head>
<body>
<!--先编写好网页布局-->
<h3>操作成功</h3>
<p><span id=daoshu>5</span>秒后回到主页<input type=button value="返回" onclick="window.history.back()" /></p>
<script type="text/javascript">
var sum=4;
function dao(){
document.getElementById("daoshu").innerHTML=sum;
sum--;
}
setInterval("dao()",1000);
//获取显示秒数的元素,通过定时器来更改秒数。
setTimeout("window.location.assign('www.imooc.com')",5000);
//通过window的location和history对象来控制网页的跳转。
</script>
</body>
</html>