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

为什么我这段代码在sub上面打可以运行在这里却不可以

<!DOCTYPE html>

<html>

 <head>

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

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

 </head>

 <body>

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

   <h1>操作成功</h1>

   <p>还有<span id="laozai">5</span>秒后就跳转<a href="javascript:back()">返回</a></p>

  

 

  <script type="text/javascript">  

    var sum=5;

    function daiojishi(){

        document.getElementById("laozai").innerHTML=sum;

        sum= sum-1;

        if(sum==0){

            window.location.href="http://www.imooc.com/";

        }

    }

    setInterval(daiojishi,1000);

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

    function back(){

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

    }

    

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

  

 </script> 

</body>

</html>


提问者:思进行 2019-02-11 13:46

个回答

  • 四目相望
    2019-02-13 15:34:27
    已采纳

    没事的  这个版本可能有点问题,我这里也和你一样的。

  • 破釜沉舟0511
    2019-03-07 20:16:07

    <a href="javascript:back()">  

    这里为什么要加一个javascript:  

    大佬,什么原理呢?