获取kingeditor编辑器内容

 1 //初始化编辑器
 2 var editorMini = KindEditor.create('.editor-mini',{
 3   width : '70%',
 4   height : '250px',
 5   resizeType : 1,
 6   uploadJson : '${basePath}/editorFile.do',
 7   items : [''],
 8   afterBlur: function(){this.sync();}
 9 
10 });
11 //afterBlur 同步编辑器中的内容,用户获取编辑器输入内容
原文地址:https://www.cnblogs.com/-lpf/p/5992604.html