定义kindeditor的时候要加上一下几个属性设置:

 1 KindEditor.ready(function(K) {
 2         var editor = K.create("textarea[name='content']", {
 3             items : [
 4                 'fontname', 'fontsize', '|', 'forecolor', 'hilitecolor', 'bold', 'italic', 'underline',
 5                 'removeformat', '|', 'justifyleft', 'justifycenter', 'justifyright', 'insertorderedlist',
 6                 'insertunorderedlist', '|', 'emoticons', 'image', 'link','unlink'],
 7                 afterBlur: function () { editor.sync(); },
 8                 allowFileManager: true,
 9         });
10     });
/*获取内容*/
var content = $("#txtContent").val();

 

posted on 2017-10-13 14:42  十七年蝉  阅读(1848)  评论(0编辑  收藏  举报