これは私の関数の一部であり、質問が含まれています。
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が必要です。