重定向到其他页面上警告框确认

这个问题在这里已经有了答案:

  • 我如何重定向到另一个网页? 67个答案

  • 尝试这个:

    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

    上一篇: Redirect to other page on alert box confirm

    下一篇: Redirect Using jQuery