为什么结果不会跳转,还回出现负秒数???真是搞不懂
<script type="text/javascript">
//获取显示秒数的元素,通过定时器来更改秒数。
var time=document.getElementById("sec").innerHTML;
//通过window的location和history对象来控制网页的跳转。
function count(){
time--;
document.getElementById("sec").innerHTML=time;
if(time==0)
{
location.assign("www.imooc.com");
}
}
setInterval("count()",1000);
function back(){
window.history.back();
}
</script>