How does GitHub change the URL without reloading a page?

前端 未结 2 444
孤街浪徒
孤街浪徒 2021-01-28 09:52

Go to any GitHub page and click on any of the directories/files and observe how the URL changes but only part of the page is updated. There\'s no whole page reloading.

H

2条回答
  •  囚心锁ツ
    2021-01-28 10:25

    They use the history API, or specifically, history.pushState().

    You can use this, jQuery is not required, but there are plugins such as history.js.

    This works on most browsers, namely Chrome, Safari and Firefox. IE10 and above supports this. In older IEs, you can fall back onto using the hash (window.location.hash).

    GitHub also blogged about this.

提交回复
热议问题