当window.popstate
被触发时,是否有任何方法可以获得新页面的url ?
window.onpopstate(function (){
newPageUrl = //get the new page's URL
})
使用
window.onpopstate = function (){
newPageUrl = location.href;
}