情况: 1-i有一个我通过ajax从数据库加载的模板 2-然后将其放入div 3-允许用户更改值,然后通过jquery整个html
第一步
$.ajax({
type: "POST",
url: "@Url.Action("getFormTemplate", "FormTemplate")",
data: "CenterID=" + CenterID,
dataType: "json",
success: function (response) {
if (response.Success == "true") {
$('#d_AdditionalInfo2').empty().append(response.Value.Content);
}}});
第一步有效,并且html正确呈现
最后一步是问题 当我使用
var htmlContent = $('#d_AdditionalInfo2').html();
该值返回原始html,无需用户输入
问题出在哪里