重定向到其他页面上警告框确认
这个问题在这里已经有了答案:
尝试这个:
function deletePost() {
var ask = window.confirm("Are you sure you want to delete this post?");
if (ask) {
window.alert("This post was successfully deleted.");
window.location.href = "window-location.html";
}
}
链接地址: http://www.djcxy.com/p/1947.html