Stop History.js from changing the address URL

你。 提交于 2019-12-13 04:42:44

问题


I've been experimenting with History.js lately (https://github.com/browserstate/history.js/). I notice when you use the History.pushState(), History.js removes everything upto the first / and replaces that with the hash.

I.E. current url: www.google.com/something

History.pushState({},null,"something2");

sets the address bar to www.google.com/something2

whereas in HTML4 it would use the hash (#) -> www.google.com/something#something2

Is there anyway to disable this feature. I'l like it to not remove everything up to the '/', but without necessarily going back to HTML4. I know there's a History.options.html4Mode, but I still like how it stores the index internally, as opposed to using the suid.


回答1:


Within the History.js github repo, you can set the options to force hashtags as Default

History.js Github Readme, Options Link

History.options.html4Mode  

If true, will force HTMl4 mode (hashtags)



来源:https://stackoverflow.com/questions/20713636/stop-history-js-from-changing-the-address-url

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