Is it possible to have the url change while you sc

2019-01-23 03:17发布

Is it possible to have the url change while you scroll down a single page with ajax? I have a website all on one page and want to have this effect.

example:

www.blablabla.com/blog

user scroll down...

www.blablabla.com/blog/entry-name

I know about hashing... can I mask the URL?

7条回答
三岁会撩人
2楼-- · 2019-01-23 03:41

You can use pushState() to modify the URL displayed in the browser URL bar without reloading or using the hash. As long as your browser supports HTML5 that is.

https://developer.mozilla.org/en/DOM/Manipulating_the_browser_history

查看更多
登录 后发表回答