标签:head des 属性 edit overflow ext split article end
之前在表单中对ckeditor的赋值就直接是
$("#theadEditor").val(result);
而如今我想通过点击不同选项来使用Ajax在后台訪问数据。对ckeditor赋值,
可是页面根本没有变化,而后台的数据却有。那么如今肯定的就是ckeditor的问题了。
我认为应该是ckeditor已经创建了。而通过一般的赋值应该不行。
那么仅仅有先通过销毁。再创建这种方式来处理了。
以下是我在Stack Overflow中看到的一种解决方案。
$.post("你的訪问数据地址",{參数名:參数值},function(result){
var editor = CKEDITOR.instances["editorName"]; //你的编辑器的"name"属性的值
if (editor) {
editor.destroy(true);//销毁编辑器
}
CKEDITOR.replace(editorID); //替换编辑器,editorID为ckeditor的"id"属性的值
$("#editorID").val(result); //对editor赋值
});
如今问题应该就攻克了。
标签:head des 属性 edit overflow ext split article end
原文地址:http://www.cnblogs.com/clnchanpin/p/7136216.html