kindeditor初学

来源:互联网 发布:标识设计软件 编辑:程序博客网 时间:2024/05/20 03:40

富文本编辑器 kindeditor


简单的引入

KindEditor.ready(function(K) {            KE = K.create('textarea[name="content"]', {            items : [ 'source', '|', 'undo', 'redo', '|', 'preview', 'print', 'template', 'code', 'cut', 'copy', 'paste',                  'plainpaste', 'wordpaste', '|', 'justifyleft', 'justifycenter', 'justifyright',                  'justifyfull', 'insertorderedlist', 'insertunorderedlist', 'indent', 'outdent', 'subscript',                  'superscript', 'clearhtml', 'quickformat', 'selectall', '|', 'fullscreen', '/',                  'formatblock', 'fontname', 'fontsize', '|', 'forecolor', 'hilitecolor', 'bold',                  'italic', 'underline', 'strikethrough', 'lineheight', 'removeformat', '|', 'image',                  'table', 'hr', 'emoticons', 'baidumap', 'pagebreak',                  'anchor', 'link', 'unlink','letterpaper' ],            filterMode : false,            wellFormatMode : false,            newlineTag : 'br',            allowFileManager : true,            afterBlur : function() {                this.sync();                K.ctrl(document, 13, function() {                                    });                K.ctrl(this.edit.doc, 13, function() {                                    });            }            });   });   

参考资料:

kindeditor详细使用说明(个人)

http://www.doc88.com/p-212659998443.html

KindEditor 4.x documentation
http://www.kindsoft.net/docs/option.html#synctype


0 0
原创粉丝点击