Html5无刷新修改browser Url的方法

时间:2021-05-08

Ajax局部刷新可以通过HTML5的新特性修改browser address。
window.history表示window对象的历史记录
window.history.pushState(object, title, new_url) -- 在window.history里新增一个历史记录点
window.history.replaceState(object, title, new_url) -- 在window.history替换当前page的历史记录点
object - 可以扩展想要的object
title - 目前所有浏览器都不支持
new_url 浏览器不会检查url是否存在,只改变url,url必须同域,不能跨域
eg: original url: www.test.com
window.history.pushState({time: 'test'}, ' ', 'www.test_test.com')

声明:本页内容来源网络,仅供用户参考;我单位不保证亦不表示资料全面及准确无误,也不保证亦不表示这些资料为最新信息,如因任何原因,本网内容或者用户因倚赖本网内容造成任何损失或损害,我单位将不会负任何法律责任。如涉及版权问题,请提交至online#300.cn邮箱联系删除。

相关文章