[JavaScript] location.href, loc
2016-03-02 本文已影响401人
何幻
location.href:http://localhost/1.html?id=1&page=2#section=3
location.search:? id=1&page=2
location.hash:#section=3
location.href
,location.search
和location.hash
都可以赋值。
其中location.href
,location.search
接受赋值(即使不改变值),会刷新页面。
location.hash
接受赋值,不会刷新页面。