[JavaScript] location.href, location.search和location.hash

location.href:http://localhost/1.html?id=1&page=2#section=3

location.search:? id=1&page=2
location.hash:#section=3

location.hreflocation.searchlocation.hash都可以赋值。

其中location.hreflocation.search接受赋值(即使不改变值),会刷新页面。
location.hash接受赋值,不会刷新页面。

你可能感兴趣的:([JavaScript] location.href, location.search和location.hash)