我正在使用 jquery 对话框,当用户单击确定时,应触发服务器端 onclick 事件,如果单击取消,则什么也没有发生。
我必须通过 preventDefault() 函数在一开始就阻止点击函数。
$(document).ready(function () {
$("#<%=submit.ClientID %>").click(function (event) {
event.preventDefault();
$("#confirm").dialog({
buttons: {
"OK": function () { $(this).dialog("close");
Here should be the code to trigger the server side click event
},
"Cancel": function () { $(this).dialog("close");},
}
});
});
});
我不知道如何触发服务器端 onclick 事件。有任何想法吗?谢谢