在window.popstate上获取新的URL



window.popstate被触发时,是否有任何方法可以获得新页面的url ?

window.onpopstate(function (){
    newPageUrl = //get the new page's URL
})

使用

window.onpopstate = function (){
    newPageUrl = location.href;
}

相关内容

  • 没有找到相关文章

最新更新