当前位置:网站首页>History object

History object

2022-06-24 18:35:00 Brother Mengfan

window The object also provides a history object , It interacts with browser history . This object contains the user ( stay
In the browser window ) Visited URL. The method is shown in the following table .

  Example :

    <a href="b.html">b.html</a>
    <script>
        console.log('-----------') 
        //history.forward(); 
        history.go(1)
    </script> <a href="a.html">a.html</a>
    <script>
        //history.back();
         history.go(-1)
    </script>

原网站

版权声明
本文为[Brother Mengfan]所创,转载请带上原文链接,感谢
https://yzsam.com/2022/02/202202211333166930.html