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

为什么第三秒显示不出来

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

提问者:慕田峪5648110 2016-09-02 00:29

个回答

  • 旺旺肖肖酥
    2016-09-02 08:45:12
    已采纳

    <!DOCTYPE html>

    <html>

     <head>

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

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

     </head>

     <body>

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

      <H4>操作成功</H4>

      <p><span id="id">5</span>秒后回到主页<a href="#" onclick="set()">返回</a><p>

      

     

      <script type="text/javascript">  

     

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

    var da=document.getElementById("id").innerHTML;

    function set(){

        if(da>0){

            document.getElementById("id").innerHTML=da--;

           

            }else{

                window.location.assign("http://www.baidu.com");

            }

        }

    setInterval("set()",1000);

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

       

     </script> 

    </body>

    </html>


  • 旺旺肖肖酥
    2016-09-02 08:46:44

    修改你的 可以用了 你在试试 --da 和 da--   看显示有什么区别

  • 旺旺肖肖酥
    2016-09-02 08:42:44

    --da和da--  这两个是不一样的  前者 先自减在赋值,后者先赋值再自减   , 你家的 onclick时间是这么用的 也是挺神的 还有 你两个 setInterval   肯定有秒数被跳过