我有一個js函數,它可以從控制器創建新的員工,將它插入表單標籤(用於以後的.serialize()),然後將此html插入createDialog div並顯示此div作爲對話。從對話框的jquery帖子表格
<div id="createDialog" style="display:none;">
</div>
$.get('/Employee/Create',
function (html) {
html = "<form id='createEmp'>" + html;
html = html + "</form>";
$("#createDialog").html(html);
$("#createDialog").dialog({
modal: true,
width: 500,
buttons: { "Save": function() { postEmployee(); } },
close: function (ev, ui) { $(this).dialog('destroy'); }
});
});
function postEmployee() {
$.post('/Employee/Create',
$("#createEmp").serialize(),
function (html) {
$('#reply').html(html);
});
}
這個工作,但只有一次。對於每一個下一篇文章,以前文章中的所有表單字段也會添加到當前文章中。 這可以修復嗎?
Tahnk你!