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

来源:8-17 编程练习

超神菌

2016-01-13 13:43

<!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>


写回答 关注

1回答

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

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

        function return(){

            window.history.back();

        }

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

    超神菌

    非常感谢!

    2016-01-13 17:12:43

    共 1 条回复 >

JavaScript进阶篇

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

468061 学习 · 21891 问题

查看课程

相似问题