state - Web API 接口参考 编辑

返回在 history 栈顶的 任意 值的拷贝。 通过这种方式可以查看 state 值,不必等待 popstate事件发生后再查看。

语法

let currentState = history.state;

如果不进行下面两种类型的调用,state 的值将会是 null 

pushState() or replaceState().

例子

下面 log 例句输出 history.state 的值,首先是在没有执行 pushState() 语句进而将值 push 到 history 之前的 log。下面一行 log 语句再次输出 state 值,此时 history.state 已经有值。可以在脚本文件中执行下面语句,或者在控制台直接执行。

// 值为 null 因为我们还没有修改 history 栈
console.log(`History.state before pushState: ${history.state}`);

// 现在 push 一些数据到栈里
history.replaceState({name: 'Example'}, "pushState example", 'page3.html');

// 现在 state 已经有值了
console.log(`History.state after pushState: ${history.state}`);

SpecificationsE

SpecificationStatusComment
HTML Living Standard
The definition of 'History' in that specification.
Living StandardAdds the scrollRestoration attribute.
HTML5
The definition of 'History' in that specification.
RecommendationInitial definition.
Custom Scroll Restoration - History-based API
The definition of 'History' in that specification.
DraftAdds the scrollRestoration attribute.

Browser compatibility

BCD tables only load in the browser

The compatibility table on this page is generated from structured data. If you'd like to contribute to the data, please check out https://github.com/mdn/browser-compat-data and send us a pull request.

See also

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据

词条统计

浏览:44 次

字数:3607

最后编辑:7年前

编辑次数:0 次

    我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
    原文