为什么我的要到-2秒后才跳转呢?
<!DOCTYPE html> <html> <head> <title>浏览器对象</title> <meta http-equiv="Content-Type" content="text/html; charset=gkb"/> </head> <body> <!--先编写好网页布局--> <h3>操作成功</h3> <p><b id="second">5</b>秒后返回到主页 <br></p> <a href="javascript:goBack();">返回(第一种方法)</a><br><br> <a href="" onclick="window.history.go(-1)">返回(第二种方法)</a> <script type="text/javascript"> var sec = document.getElementById("second"); var i=5; var Timer = setInterval("timer()",1000); function timer() { i--; sec.innerHTML = i; if(i==1) { window.location.href = "http://www.imooc.com/learn/10"; } } function goBack() { window.history.go(-1); } //获取显示秒数的元素,通过定时器来更改秒数。 //通过window的location和history对象来控制网页的跳转。 </script> </body> </html>
谢谢!