求解,动不了

来源:8-17 编程练习

kala酱

2020-03-12 12:31

<!DOCTYPE html>

<html>

 <head>

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

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

 </head>

 <body>

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

  <h4>操作成功</h4>

  <p><span id="clock"></span>秒后回到主页<a herf="javascript:j()">返回</a></p>

 

  <script type="text/javascript">  

 

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

   var num=5;

   function i(){

       var time=new Date();

       document.getElementById("clock").innerHTML=num;

       num=num-1;

       if(num==0){

          window.history.back(); 

       }

   }

   setInterval(i(),1000);

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

   function j(){

       window.location.href="www.baidu.com";

   }

 </script> 

</body>

</html>


写回答 关注

3回答

  • 慕后端0302327
    2020-03-31 23:55:13

    <!DOCTYPE html>


    <html>


    <head>


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


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

    <style>

    .link{

    color:blue;

    }

    </style>


    </head>


    <body>


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


    <h4>操作成功</h4>


    <p><span id="clock">5</span>秒后回到主页  <u class=link onclick="j()">返回</u>


    <script type="text/javascript">




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


    var num = 5;


    function i() {

    num = num - 1;

    if (num == 0) {

    window.location.href = "https://www.baidu.com";

    }

    document.getElementById("clock").innerHTML = num;


    }


    setInterval(i, 1000);


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


    function j() {

    window.history.back();

    }


    </script>

    </body>


    </html>


  • 不熬夜的小朱朱
    2020-03-13 20:40:27

    setInterval(i(),1000);

    改为setInterval("i()",1000);


  • LSQ687
    2020-03-12 20:53:47

    操作成功<br><br>

     

    操作成功<br><br>

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

    var num=5;

     function i(){

         document.getElementById("txt").innerHTML=num;

         num=ary-1;

         setTimeout(i,1000);

    if(num==0){

    window.location.assign("https://www.imooc.com/code/49");

    }
     }
    setTimeout(i,1000);


JavaScript进阶篇

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

468060 学习 · 21891 问题

查看课程

相似问题