Version: Next

history对象

创建

window.history
history

方法

  • back——后退
  • forward——前进
  • go——后退和前进
    • 正数: 前进几个历史记录
    • 负数: 后退几个历史记录

属性

  • length——返回当前窗口历史列表中的URL数量
<body>
<input type="button" id="btn" value="获取历史记录个数"/>
<a href="7.history与轮播图.html">history对象页面</a>
<input type="button" id="forward" value="前进"/>
<script>
var button1 = document.getElementById("btn");
button1.onclick = function () {
//当前窗口历史记录的个数
document.write(history.length);
}
var button2 = document.getElementById("forward");
button2.onclick = function () {
// history.forward();
history.go(1);
}
</script>
</body>