首页
会员中心
到顶部
到尾部
JavaScript教程

JavaScript Window History

时间:2020/11/2 14:52:01  作者:  来源:  查看:0  评论:0
内容摘要:JavaScript Window HistoryJS LocationJS Navigatorwindow.history 对象包含浏览器历史。Window Historywindow.history 对象可不带 window 书写。为了保护用户的隐私,JavaScript 访...

JavaScript Window History

window.history 对象包含浏览器历史。

Window History

window.history 对象可不带 window 书写。

为了保护用户的隐私,JavaScript 访问此对象存在限制。

一些方法:

  • history.back() - 等同于在浏览器点击后退按钮
  • history.forward() - 等同于在浏览器中点击前进按钮

Window History Back

history.back() 方法加载历史列表中前一个 URL。

这等同于在浏览器中点击后退按钮。

实例

在页面中创建后退按钮:

<html><head><script>function goBack() {    window.history.back() }</script></head><body><input type="button" value="Back" onclick="goBack()"></body></html>

以上代码的输出将是(请点击此按钮):

Window History Forward

history forward() 方法加载历史列表中下一个 URL。

这等同于在浏览器中点击前进按钮。

实例

在页面中创建前进按钮:

<html><head><script>function goForward() {    window.history.forward() }</script></head><body><input type="button" value="Forward" onclick="goForward()"></body></html>

以上代码的输出将是:



相关评论
广告联系QQ:45157718 点击这里给我发消息 电话:13516821613 杭州余杭东港路118号雷恩国际科技创新园  网站技术支持:黄菊华互联网工作室 浙ICP备06056032号