1. history对象 保存了用户在浏览器中访问页面的历史记录
    2. 语法:history.back()
    3. 功能:回到历史记录的上一步
    4. 相当于是用了history.go(-1)
    5. //-1表示前一步,-2前两部
    6. 语法:history.go(1)
    7. 功能:回到历史记录的前一步
    8. 相当于history.forward()
    9. 语法:history.go(-n)
    10. 功能:回到历史记录的前n
    11. 语法:history.go(n)
    12. 功能:回到历史记录的后n
    • 06.html 文件

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

      07

    ```