码迷,mamicode.com
首页 > Web开发 > 详细

Ckeditor通过Ajax更新数据

时间:2017-07-08 12:23:55      阅读:230      评论:0      收藏:0      [点我收藏+]

标签: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赋值
});

如今问题应该就攻克了。

Ckeditor通过Ajax更新数据

标签:head   des   属性   edit   overflow   ext   split   article   end   

原文地址:http://www.cnblogs.com/clnchanpin/p/7136216.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!