小伙伴们 帮我看下我这是哪里写错了啊?

来源:8-17 编程练习

慕粉3279124

2016-06-02 12:20

无限倒计时 最后乱码 到零不能实现跳转

 <!DOCTYPE html>
<html>
 <head>
  <title>浏览器对象</title>  
  <meta http-equiv="Content-Type" content="text/html; charset=gkb"/>   
 </head>
 <body>
  <!--先编写好网页布局-->
  <h1>操作成功</h1>
  <p><span id="times">5</span>秒钟后回到主页<a href=href="javascript:count();">返回</a></p>
  
  
 
  <script type="text/javascript">  
 
   //获取显示秒数的元素,通过定时器来更改秒数。
   var a=document.getElementById('times').innerHTML;
  function myTime(){
      a--;
      document.getElementById('times').innerHTML=a;
      if(a<0){
          location.assign('http//:www.imooc.com');
      }
  }
     setInterval('myTime()',1000);
   //通过window的location和history对象来控制网页的跳转。
   function count(){
       window.history.back()
   }
 </script> 
</body>
</html> 


写回答 关注

2回答

  • 临风独舞翩跹
    2016-06-02 14:33:51

     location.assign('http//:www.imooc.com');      里面的地址错了应该是
     location.assign('http://www.imooc.com');

  • 慕村8053923
    2016-06-02 14:17:05

    if判断那里 改成等于0试试

    慕村8053...

    地址错了,那个冒号应该在http后面

    2016-06-02 15:39:22

    共 2 条回复 >

JavaScript进阶篇

本课程从如何插入JS代码开始,带您进入网页动态交互世界

468061 学习 · 21891 问题

查看课程

相似问题