KindEditor编辑器, 利用ajax动态切换编辑器内容

// 后台成功返回数据后的js处理
KindEditor.remove(‘#content_id‘); // 先移除之前创建的编辑器
var editor = KindEditor.create(‘#content_id‘, {  // 再重新创建编辑器
    themeType: ‘simple‘,
    resizeType: 1,
    urlType: ‘domain‘,   // 将图片保存为绝对路径
    uploadJson: ‘../kindeditor/php/upload_json.php‘,
    fileManagerJson: ‘../kindeditor/php/file_manager_json.php‘,
    allowFileManager: true,
    afterBlur: function(){this.sync();}
});
editor.html(data);   // 再把从后台传过来的值重新赋给编辑器

郑重声明:本站内容如果来自互联网及其他传播媒体,其版权均属原媒体及文章作者所有。转载目的在于传递更多信息及用于网络分享,并不代表本站赞同其观点和对其真实性负责,也不构成任何其他建议。