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

求助 不知道哪错了 都不好使

<!DOCTYPE html>

<html>

 <head>

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

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

 </head>

 <body>

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

  <h2>操作成功</h2>

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

  <span>秒后回到首页</span>

  <a href="javascript:return();">返回</a>

 

  <script type="text/javascript">  

    var i=document.getElementById("second").innerHTML;

    function count(){

        i--;

        document.getElementById("second").innerHTML=i;

        if(i==0){

            location.assign("www.imooc.cin");

        }

        }

        setInterval("count()",1000);

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

    function return(){

        window.history.back();

    }

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

   

 </script> 

</body>

</html>


提问者:超神菌 2016-01-13 13:43

个回答

  • 许你一世地老天荒
    2016-01-13 15:29:16
    已采纳

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

        function return(){

            window.history.back();

        }

    这个函数名 return 你换一个就好了,用了关键字,报错了