为了账号安全,请及时绑定邮箱和手机立即绑定

倒计时结束后跳转到慕课网主页但显示找不到文件,代码哪里出了问题?

<!DOCTYPE html>

<html>

 <head>

  <title>浏览器对象</title>  

  <meta http-equiv="Content-Type" content="text/html; charset=gkb"/>   

 </head>

 <body>

  <!--先编写好网页布局-->

    <h2>操作成功</h2>

  <span id="sec">5</span>秒后返回主页<a href="www.imooc.com" onclick="gb()">返回</a>

  

  <script type="text/javascript">  

   //获取显示秒数的元素,通过定时器来更改秒数。

   var num=5;

   function second(){

       if(num==0){

           clearTimeout(i);

           window.location.assign("www.imooc.com");

       }

       else{

           document.getElementById("sec").innerText=num;

           num--;

           var i=setTimeout("second()",1000);

       }

   }

   //通过window的location和history对象来控制网页的跳转。

   function gb(){

    window.history.go(-1);

   }

   second();

 </script> 

</body>

</html>


正在回答

1 回答

window.location.assign("https://www.imooc.com");

这样就可以了

0 回复 有任何疑惑可以回复我~

举报

0/150
提交
取消

倒计时结束后跳转到慕课网主页但显示找不到文件,代码哪里出了问题?

我要回答 关注问题
意见反馈 帮助中心 APP下载
官方微信