标签: javascript popstate
当window.popstate被解雇时,有什么方法可以获取新页面的网址吗?
window.popstate
window.onpopstate(function (){ newPageUrl = //get the new page's URL })
答案 0 :(得分:10)
使用此
window.onpopstate(function (){ newPageUrl = location.href; })