您好我想知道如何在删除gridview中的行之前实现confim消息但没有回发到服务器我知道我需要使用jQuery但我不知道如何。(我选择行gridview中的复选框并按删除要删除的按钮,如果行的nonoe被诅咒我想显示警告消息) 这是我的aspx页面:
这是c#代码:
答案 0 :(得分: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>