富文本编辑框 kindeditor
kindeditor 是一个插件
1 下载地址:
http://kindeditor.net/down.php
2 文件夹说明:
3 基本使用:
1 <textarea name="content" ></textarea> 2 3 <script src="/static/jquery-1.12.4.js"></script> 4 <script src="/static/plugins/kind-editor/kindeditor-all.js"></script> 5 <script> 6 $(function () { 7 initKindEditor(); 8 }); 9 10 function initKindEditor() { 11 var kind = KindEditor.create('#content', { 12 '100%', // 文本框宽度(可以百分比或像素) 13 height: '300px', // 文本框高度(只能像素) 14 minWidth: 200, // 最小宽度(数字) 15 minHeight: 400 // 最小高度(数字) 16 }); 17 } 18 </script>
1 <script charset="utf-8" src="/static/plugin/kindeditor/kindeditor-min.js"></script> 2 <script charset="utf-8" src="/static/plugin/kindeditor/lang/zh_CN.js"></script> 3 <script> 4 var editor; 5 KindEditor.ready(function (K) { 6 editor = K.create('textarea[name="content"]', { 7 resizeType: 1, 8 allowPreviewEmoticons: false, 9 allowImageUpload: false, 10 items: [ 11 'fontname', 'fontsize', '|', 'forecolor', 'hilitecolor', 'bold', 'italic', 'underline', 12 'removeformat', '|', 'justifyleft', 'justifycenter', 'justifyright', 'insertorderedlist', 13 'insertunorderedlist', '|', 'emoticons', 'image', 'link'] 14 }); 15 }); 16 </script>