Redirect to other page on alert box confirm

This question already has an answer here:

  • How do I redirect to another webpage? 67 answers

  • 尝试这个:

    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/1948.html

    上一篇: 我如何在jQuery中使用标题位置?

    下一篇: 重定向到其他页面上警告框确认