这是我的功能,其中包含问题:
function deletePost() {
var ask = window.confirm("Are you sure you want to delete this post?");
if (ask) {
window.alert("This post was successfully deleted.");
/* How to redirect to another page on confirm? */
}
}
需要纯Javascript。
答案 0 :(得分:24)
试试这个:
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";
}
}