我在jqueryui对话框中显示html表单,我正在使用jquery验证插件来验证它。
问题 - 当我通过将内容更改为原始提交表单时,默认表单操作正在运行。
只有在关闭表单之前将html内容更改为原始内容时才会发生。
这是我的代码:
$(document).ready(function() {
var getOldForm = $("#send-pm-win").html();
$("#pmLink").click(function() {
$("#send-pm-win").dialog({
modal: true,
draggable: false,
resizable: false,
autoOpen: true,
buttons: [{
text: "Cancel",
click: function() {
$(this).dialog("close");
},
style: "outline: none;"
}],
close: function(event, ui) {
$("#send-pm-win").html(getOldForm);
$(this).dialog("destroy");
}
});
});
});