Append parameter in url without reloading page

大憨熊 提交于 2019-12-02 03:29:49

You can only do this using history.pushState(state, title, url) which is an HTML5 feature.

There is a new feature that aims to replace the use of location.hash with a better solution: pushState.

 window.history.pushState(data, "Title", "/new-url");

More information: http://badassjs.com/post/840846392/location-hash-is-dead-long-live-html5-pushstate

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!