Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
225 views
in Technique[技术] by (71.8m points)

javascript - Stop History.js from changing the address URL

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.

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

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)


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...