带警号#
通过location.hash实现跳转
location.hash
通过window.addEventListener('hashchange',()=>{}),监听变化,里面有个newURL和oldURL属性。
window.addEventListener('hashchange',()=>{})
newURL
oldURL
基于H5的history,通过window.addEventListener('popstate',()=>{})进行监听,里面有个forward、back、current。
window.addEventListener('popstate',()=>{})
forward
back
current
← 入门 命名路由→