为什么总显示为-1的时候才开始跳转呢?
<body>
<!--先编写好网页布局-->
<h4>操作成功</h4>
<span id="time"></span><span>秒后回到主页</span> <a href="javascript:back();">返回</a>
<script type="text/javascript">
var fre=5;
document.getElementById("time").innerHTML=fre;
//获取显示秒数的元素,通过定时器来更改秒数。
function jump(){
fre=fre-1;
document.getElementById("time").innerHTML=fre;
if(fre==0){
window.location.assign("http://www.imooc.com/learn/10");
}
}
setInterval(jump,1000);
//通过window的location和history对象来控制网页的跳转。
function back(){
window.history.back();
}