我有一个与这个几乎相同的模态表单:http: //jqueryui.com/demos/dialog/modal-form.html
该表单已经有一个提交按钮。我可以设法使用此按钮提交表单,但回调函数不起作用。有没有办法使用我自己的提交按钮并使回调函数工作?
buttons: {
"Create an account": function () {
$("#dialog-form").html("thank you for <b>submit</a>");
},
Cancel: function () {
$(this).dialog("close");
}
}
你可以在 jsFiddle 上测试我的代码