一、History对象
History对象:有关客户访问过的URL的信息。
back() 加载 History列表中的上一个URL
forward() 加载 History 列表中的下一个 URL
go("url" or number) 加载 History列表中的一个 URL或要求浏览器移动指定的页面数
back ()方法相当于后退按钮;
forward ()方法相当于前进按钮;
go(1)代表前进1页,等价于forward()方法;
go(-再代表后退1页,等价于back()方法;
方法代码展示:
第一个html文件主要设置一个按钮,点击事件,使用herf属性
<input type="button" name="" id="btn" value="打开demo2.html" />
<script type="text/javascript">
document.getElementById("btn").onclick = function(){
location.href = "demo2.html";
}
</script>
第二个html文件,主要有四个按钮,第一个是返回上一页面的按钮,第二个是跳转到下一页面的按钮,第三个是有历史浏览记录才能加载到下一页面,第四个等同于back() forward()的作用
<input type="button" name="" id="btn1" value="back()" />
<input type=&