为什么倒计时那里不显示。。
为什么倒计时不显示。。。源代码如下:
<!DOCTYPE html>
<html>
<head>
<title>浏览器对象</title>
<meta http-equiv="Content-Type" content="text/html; charset=gkb"/>
</head>
<body>
<!--先编写好网页布局-->
<a href="www.imooc.com/code">forback</a>
<p>操作成功</p>
<p><span id="count"></span>秒后回到主页</p>
<a href="www.baidu.com">返回</a>
<script type="text/javascript">
var num=5;
function startCount() {
document.getElementById("count").value=num;
num=num-1;
if(num>=0){
setTimeout("startCount()",1000);
}
else{
window.location.href="http://www.taobao.com";
}
}
//window.onload=startCount;
setTimeout(startCount,0);
//获取显示秒数的元素,通过定时器来更改秒数。
//通过window的location和history对象来控制网页的跳转。
</script>
</body>
</html>