在window.popstate上获取新的URL

时间:2016-09-15 05:15:02

标签: javascript popstate

window.popstate被解雇时,有什么方法可以获取新页面的网址吗?

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

1 个答案:

答案 0 :(得分:10)

使用此

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