页面跳转,为啥没效果
<!DOCTYPE html>
<html>
<head>
<title>浏览器对象</title>
<meta http-equiv="Content-Type" content="text/html"; charset="UTF-8"/>
</head>
<body>
<!--先编写好网页布局-->
<span id="second">5</span>
<span> 秒后回到主页</span>
<input type="button" value="返回" onclick="return()">
<script type="text/javascript">
//获取显示秒数的元素,通过定时器来更改秒数。
var numb=document.getElementById("second").innerHTML;
function count(){
numb--;
document.getElementById("second").innerHTML=numb;
if(numb==0)
{location.assign("www.imooc.com");}
}
setInterval("count()",1000);
//通过window的location和history对象来控制网页的跳转。
function return(){
window.history.go(-1);
}
</script>
</body>
</html>