在 window.popstate 获取新的 URL

Get the new URL on window.popstate

有什么方法可以在 window.popstate 触发时获取新页面的 url?

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

使用这个

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