麻烦大神帮我看看我的代码哪里有问题?秒数一直没变化啊

来源:8-17 编程练习

crossain

2016-06-02 23:10

<!DOCTYPE html>

<html>

 <head>

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

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

 </head>

 <body>

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

  <h1>操作成功</h1>

  <p><span id="sec">5</span>秒后回到主页<a href="javascript:backnow()">返回</a></p>

  

 

  <script type="text/javascript">  

 var num=5

 function daoji()

 {   

     if(num==0}{location.assign='http://www.imooc.com'}

     document.getElementById('sec').innerHTML=num;

     num=num-1;}

     setInterval(daoji,1000);


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

 function backnow(){

     window.history.go(-1);

 }

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

   

 </script> 

</body>

</html>


写回答 关注

2回答

  • jccong
    2016-06-03 00:39:19
    已采纳

    大哥,你function daoji()方法里面,判断语句 if(num==0),你写 if(num==0},肯定错啊

    crossa...

    非常感谢!

    2016-06-03 00:54:24

    共 1 条回复 >

  • 慕粉3422158
    2016-06-03 01:08:04

    1) if(num==0}写错

    2){location.assign='http://www.imooc.com'} 写错

JavaScript进阶篇

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

468061 学习 · 21891 问题

查看课程

相似问题