我有一个按钮,该按钮重定向到某些逻辑上展开的不同页面。 单击上面的按钮后,我希望能够获取新加载的页面的URL。
我使用的按钮有id="place-order-btn"
document.getElementById("place-order-btn").onclick = function(){
verifyPayement()
};
function verifyPayement(){
var currentUrl = window.location.href;
alert(currentUrl);
}
当然,先前的功能为我提供了当前页面的URL,而不是单击按钮后重定向到的页面的URL。 有什么想法吗?