history

参考

1.1、history.length

history栈的长度。

1.2、history.go(Integer offset)

加载history栈中的与当前页面相比的距离为offset的页面, 当offset为大于0的数字,表示向前,到那个offset为小于0的数字,表示向后。

示例:

history.go(-1);//相当于点击了返回按钮
1.3、history.forward()

相当于history.go(1)

1.4、history.back()

相当于history.go(-1)