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

为什么我的代码把浏览器搞烂了?

<!DOCTYPE html>

<html>

 <head>

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

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

 <h1>操作成功</h1>

 </head>

 <body>

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

 <p>

     <span id="a"></span>秒后回到主页

     <form>

         <input type="button" onclick="countdown()" value="返回" />

         </form>

     </p>

  

 

  <script type="text/javascript">  

   var count=5;

   var timer=document.getElementById("a");

   timer.innerHTML=count;

   function countdown(){

   if(timer.innerHTML>0){

       timer.innerHTML=timer.innerHTML-1;

   }

   setInterval("countdown()",1000);

   }

   if(timer.innerHTML==0){

       window.history.go(-1);

}

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

   

 </script> 

</body>

</html>

而且还不能返回

提问者:就是那只阿狸 2017-06-03 21:54

个回答

  • qq_星云之水_0
    2017-06-03 22:41:50
    已采纳

    不要写==0,写<0试试呢