我想更新浏览器网址而不提交网页。网址可以是任何内容,例如xyz ..请帮助我。谢谢。
这是我到目前为止所做的。
if (history.pushState)
{
window.history.pushState({ "html": response.html, "pageTitle": response.pageTitle }, "", urlPath);
}
else
{
window.location.pathname = urlPath;
}
但是使用此页面重新加载页面。为什么?谁能帮我 根据这篇文章,pushstate不会刷新页面 http://spoiledmilk.com/blog/html5-changing-the-browser-url-without-refreshing-page/#comment-6552