0

嗨,我想知道如何在删除 gridview 中的一行之前实现确认消息,但没有回发到服务器我知道我需要使用 jQuery,但我不知道如何。(我在行 gridview 中选择一个复选框并按下删除按钮删除,如果没有任何行被选中,我想显示一条警报消息)这是我的 aspx 页面:

http://pastebin.com/WVTXQx1s

这是c#代码:

http://pastebin.com/cwAhb49F

4

1 回答 1

0

您可以从这里使用 jQuery 的对话框功能:http: //jqueryui.com/dialog/#modal-confirmation

您的代码可能如下所示:

$('#deletebuttonid').Click((function() {
$( "#dialog-confirm" ).dialog({
  resizable: false,
  height:140,
  modal: true,
  buttons: {
    "Delete all items": function() {
      // Call your asp.net delete function here
    },
    Cancel: function() {
      $( this ).dialog( "close" );
    }
  }
});
});
);

然后在你的身体里:

<div id="dialog-confirm" title="Empty the recycle bin?">
<p><span class="ui-icon ui-icon-alert" style="float: left; margin: 0 7px 20px 0;">        </span>These items will be permanently deleted and cannot be recovered. Are you sure?</p>
</div>
于 2013-06-07T00:47:18.163 回答