10

window.popstate起動時に新しいページの URL を取得する方法はありますか?

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

1 に答える 1

18

これを使って

window.onpopstate(function (){
    newPageUrl = location.href;
})
于 2016-09-15T05:22:10.613 に答える