4

我在 mvc3 中使用了提交按钮来执行删除操作。我想在单击按钮时显示一个确认框,所以我使用了下面的 jquery。该查询用于静态数据,但我想使用我的数据库。当我单击提交按钮时,会出现消息,但即使我单击确定,它也会显示错误消息。我应该怎么做才能让它工作。

<script type="text/javascript">
    $(document).ready(function () {
               $("#button").click(function (event) {
            event.preventDefault();
            var link = this;
            if (confirm("Are you sure that you want to delete this user?")) {
                $.ajax({

                    type: "POST",
                    url: link.href,


                    success: function (data) 
                    {
                        $(link).parents("tr").remove();
                        alert("deleted");                     
                     },

                    error: function (data)
                     {
                        event.preventDefault();
                        alert(" Unsuccessful");
                      }
                });

            }
        }
            );
    });
4

1 回答 1

1

尝试这个:

<asp:Button ID="btn" runat="server" Text="Click"
            OnClientClick="return confirmDialog(this);"
            onclick="btn_Click" />

var confirmed = false;
function confirmDialog(obj)
{
    if(!confirmed)
    {
        $( "#dialog-confirm" ).dialog({
            resizable: false,
            height:140,
            modal: true,
            buttons: {
                "Yes": function()
                {
                    $( this ).dialog( "close" );
                    confirmed = true; obj.click();
                },
                "No": function()
                {
                    $( this ).dialog( "close" );
                }
            }
        });
    }

    return confirmed;
}

http://markmintoff.com/2011/03/asp-net-jquery-confirm-dialog/

如何在 Jquery UI 对话框中实现“确认”对话框?

于 2012-07-05T12:31:49.557 回答