目录

History API


window history 对象

这个history 对象包含用户访问的 URL(在浏览器窗口中)。

这个history 对象窗口对象的属性。

这个history 对象通过以下方式访问:

window.history要不就history:

示例

let length = window.history.length;
亲自试一试 »
let length = history.length;
亲自试一试 »

历史对象属性和方法

Property/Method Description
back() Loads the previous URL (page) in the history list
forward() Loads the next URL (page) in the history list
go() Loads a specific URL (page) from the history list
length Returns the number of URLs (pages) in the history list