这是我的功能中的一个问题:
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? */
}
}
Run Code Online (Sandbox Code Playgroud)
需要纯Javascript.
kin*_*ode 25
试试这个:
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";
}
}
Run Code Online (Sandbox Code Playgroud)