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

为什么无法跳转网页?倒计时5秒后就空白了

<html>

 <head>

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

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

 </head>

 <body>

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

  <h3>操作成功</h3>

  <p><span id=daoshu>5</span>秒后回到主页<input type=button value="返回" onclick="window.history.back()" /></p>

 

  <script type="text/javascript">

  var sum=4;

  function dao(){

    document.getElementById("daoshu").innerHTML=sum;

    sum--;

  }

      setInterval("dao()",1000);


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

  setTimeout("window.location.assign('www.imooc.com')",5000);

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

   

 </script> 

</body>

</html>


正在回答

2 回答

 setTimeout("window.location.assign('www.imooc.com')",5000); ,把www.imooc.com改成http:://www.imooc.com

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

把代码复制到自己编辑器上保存,用浏览器打开试试,慕课有时候编辑器有点。。。

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

举报

0/150
提交
取消

为什么无法跳转网页?倒计时5秒后就空白了

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