以下のjqueryを使用して開いている確認ダイアログ(はいボタンといいえボタン)を含むdivがあります。ただし、[はい] をクリックし、[いいえ] をクリックした場合はコード ビハインドに移動する必要があります。true と false を返そうとしていますが、うまくいきません..助けてください..
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;
}
});
});