有没有办法可以在不重新加载页面的情况下修改当前页面的URL?
如果可能,我想访问#哈希 之前 的部分。
我只需要更改域 后 的部分,所以就好像我没有违反跨域策略一样。
window.location.href = "www.mysite.com/page2.php"; // Sadly this reloads
现在,可以在Chrome,Safari,Firefox 4+和Internet Explorer 10pp4 +中完成此操作!
有关更多信息,请参见此问题的答案: 使用新URL更新地址栏而不散列或重新加载页面
例:
function processAjaxData(response, urlPath){ document.getElementById("content").innerHTML = response.html; document.title = response.pageTitle; window.history.pushState({"html":response.html,"pageTitle":response.pageTitle},"", urlPath); }
然后,您可以window.onpopstate用来检测后退/前进按钮的导航:
window.onpopstate
window.onpopstate = function(e){ if(e.state){ document.getElementById("content").innerHTML = e.state.html; document.title = e.state.pageTitle; } };