本文主要给大家分享HTML5无刷新改变当前url的代码,需要的的朋友参考下
window.history.back();//后退
window.history.forward();//前进
window.history.go(-1);//移动到指定记录点,当前倒退1,相当于window.history.forward()
window.history.length//可以了解历史中有多少个记录点
以上只是查资料时候的附带
下面来说
history.pushState与history.replaceState
history.pushState会增加一条历史记录,
history.replaceState会替换而不会增加,所以会更舒适一点。
以上是HTML5无刷新改变当前url的详细内容。更多信息请关注PHP中文网其他相关文章!