history对象 保存了用户在浏览器中访问页面的历史记录 语法:history.back() 功能:回到历史记录的上一步

    1. 相当于是用了history.go(-1)
    2. //-1表示前一步,-2前两部
    3. 语法:history.go(1)
    4. 功能:回到历史记录的前一步
    5. 相当于history.forward()
    6. 语法:history.go(-n)
    7. 功能:回到历史记录的前n
    8. 语法:history.go(n)
    9. 功能:回到历史记录的后n
    • 06.html 文件

      1. <p>06</p>
      2. <a href="07-history对象.html">07.html</a>
      3. </body>
    • 07-history对象.html 文件 ```javascript

      07

    ```