我在使用jquery dialog时,当用户点击ok时,服务器的侧面应发射,如果取消,就没有发生。
i 从一开始就必须防止Default()功能。
$(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");},
}
});
});
});
我不知道如何启动服务器边的浮标活动。 是否有任何想法? 感谢