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

不知此代码为何无法实现,求教,谢谢!

<!DOCTYPE html>

<html>

 <head>

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

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

 </head>

 <script type="text/javascript">


 function jishu(){

     var num=document.detElementById("second");

        num=num-1;

        document.detElementById("second")=num;

            if(num==1){

                window.open('www.imooc.com','_blank');

                 }

            else { setTimeout(jishu,1000);}

   

 

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


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

 }

 window.onload=jishu;

 </script> 

 <body>

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

  <strong>操作成功<br>

  <br>


<b id="second">5</b>


  </strong>秒后回到主页<a href="www.imooc.com">返回</a>

 

  

</body>

</html>


正在回答

5 回答

<p style='font-weight:bold'>操作成功</p>

  <span style="font-weight:bold" id='second'>5</span>秒后回到主页 <em><a href='javascript:back()'>返回</a></em>

 

  <script type="text/javascript">  

 var num=document.getElementById("second").innerHTML

   function count()//获取显示秒数的元素,通过定时器来更改秒数

   {

       num--

   document.getElementById('second').innerHTML=num

  if(num==0)

  {location.assign('www.imooc.com')

      }

}

setInterval('count()',1000)

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

   function back()

   {

       window.history.back()

   }


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

zhangjieying1996 提问者

为什么用window.open不行呢,谢谢!
2016-07-20 回复 有任何疑惑可以回复我~

setInterval(jishu(),1000)这一步你没有,上面两部是你有的但是没有innerHTML,还有你那个IF语句中应该是==0,else中的就不用了

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

var num=document.detElementById("second").innerHTML

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

getElementById('second').innerHTML=num

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

getElement 改了还是不行

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

举报

0/150
提交
取消

不知此代码为何无法实现,求教,谢谢!

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