我有一个 div 包含确认对话框(是和否按钮),我正在使用下面的 jquery 打开它。但是如果单击“是”并且不应该执行任何操作,我需要转到后面的代码。我正在尝试返回真假,但它不起作用..请帮助我..
jQuery(function ($) {
$('#<%=Gridview1.ClientID%> #confirm-dialog a[id*=lnkupdate]').click(function (e) {
e.preventDefault();
if (confirm("Are you sure you want to Update?")) {
//if yes button is clicked should go to codebehind
return true;
} else {
//if no button is clicked terminate the operation
return false;
}
});
});