ckeditor加载ajax数据不起作用为什么? 问题是textarea。将数据发布到$(“#question”)。val(data.question); 但没有显示textarea编辑器。
$.ajax({
url: "get_q.php",
data: ('.$formParams.'),
type: "POST",
datatype: "json",
success: function (data) {
if (data.ret_val == "ok") {
$("#ad_edit_id").val(data.id);
$("#question").val(data.question);
}
if (data.ret_val == "error") {
alert("error");
}
}
});