定义kindeditor的时候要加上一下几个属性设置:
KindEditor.ready(function(K) {
var editor = K.create("textarea[name='content']", {
items : [
'fontname', 'fontsize', '|', 'forecolor', 'hilitecolor', 'bold', 'italic', 'underline',
'removeformat', '|', 'justifyleft', 'justifycenter', 'justifyright', 'insertorderedlist',
'insertunorderedlist', '|', 'emoticons', 'image', 'link','unlink'],
afterBlur: function () { editor.sync(); },
allowFileManager: true,
});
});
/*获取内容*/
var content = $("#txtContent").val();