美文网首页
JavaScript Window History

JavaScript Window History

作者: S大偉 | 来源:发表于2018-02-23 13:52 被阅读0次

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

Window History

window.history对象在编写时可不使用 window 这个前缀。
为了保护用户隐私,对 JavaScript 访问该对象的方法做出了限制。

一些方法:
history.back() - 与在浏览器点击后退按钮相同
history.forward() - 与在浏览器中点击向前按钮相同

<html>
<head>
<script>
function goBack()
  {
  window.history.back()
  }

function goForward()
  {
  window.history.forward()
  }
</script>
</head>
<body>

<input type="button" value="Back" onclick="goBack()">
<input type="button" value="Forward" onclick="goForward()">
</body>
</html>

相关文章

网友评论

      本文标题:JavaScript Window History

      本文链接:https://www.haomeiwen.com/subject/nwitxftx.html