问答详情
源自:8-17 编程练习

为什么把跳转换成本地打印就报错了

<!DOCTYPE html>

<html>

 <head>

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

  <meta charset="utf-8">

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

 </head>

 <style>

  span{

  float: left;

  }

  div{

  float: left;

  }

 </style>

 <body>

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

  <p>操作成功</p>

  <span id="miao">5</span>

  <div>秒跳转<a href="">返回</a></div>

  

 

  <script type="text/javascript"> 

  var v=4;

  function x(){

  document.getElementById('miao').innerHTML=v;

  v=v-1;

  setTimeout('x()',1000);

  }

  setTimeout('x()',1000);

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

setTimeout("location.assign('https://www.imooc.com/');",5000);

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

   

 </script> 

</body>

</html>


提问者:weixin_宝慕林2286083 2018-11-19 18:58

个回答

  • 津城古天乐
    2018-12-09 23:06:03

    5000前面多了封号