1、载入进这个自己写的js代码
$(function(){ if ($("textarea.editor").length) { var editor = KindEditor.create('textarea.editor', { resizeType : 0, allowPreviewEmoticons : false, allowImageUpload : false, afterChange: function(){ this.sync(); }, items : [ 'fontname', 'fontsize', '|', 'forecolor', 'hilitecolor', 'bold', 'italic', 'underline', 'removeformat', '|', 'justifyleft', 'justifycenter', 'justifyright', 'insertorderedlist', 'insertunorderedlist', '|', 'emoticons', 'link'] }); } });2、再引用下载下来KindEditor 4.1.7资源包里的min.js (前提是把它放到你的项目文件中面)
<script src="/resources/kindeditor-4.1.7/kindeditor-min.js"></script>
3、在页面的引用