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

通过locaton当前页面跳转到新的页面之后,怎么还能通过点击"返回"按钮实现返回网页呢?


<!DOCTYPE html>

<html>

 <head>

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

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

 </head>

 <body>

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

  <h2>操作成功</h2>

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

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

  <form>

  <input type="button" value="返回" onclick="back()"  >

  </form>

  <script type="text/javascript"> 

    var time=5,seconds;

    function clock()

    {

        time--;

        document.getElementById('clock').innerHTML=time;

        if(time==0)

        {

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

        }

    }

    setInterval(clock,1000);

    function back()

    {

        history.back();

    }

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

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

 </script>   

</body>

</html>


提问者:慕九州605830 2019-11-03 11:38

个回答

  • 慕仙7321963
    2019-11-15 20:57:36

    window.history.go(-1)

  • Zero_Dis
    2019-11-05 10:50:22

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