KindEditor同时绑定多个富文本编辑器

Posted 乡间清分

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了KindEditor同时绑定多个富文本编辑器相关的知识,希望对你有一定的参考价值。

       var options = {  
                filterMode : false,  
                allowImageUpload : true,  
                items : [
                    ‘source‘, ‘|‘, ‘undo‘, ‘redo‘, ‘|‘, ‘preview‘,‘cut‘, ‘copy‘, ‘paste‘,
                    ‘justifyleft‘, ‘justifycenter‘, ‘justifyright‘,
                    ‘justifyfull‘, ‘insertorderedlist‘, ‘insertunorderedlist‘, ‘indent‘, ‘outdent‘,
                    ‘clearhtml‘, ‘quickformat‘, ‘selectall‘,  ‘/‘,
                    ‘formatblock‘, ‘fontname‘, ‘fontsize‘, ‘|‘, ‘forecolor‘, ‘hilitecolor‘, ‘bold‘,
                    ‘italic‘, ‘underline‘, ‘strikethrough‘, ‘lineheight‘, ‘removeformat‘, ‘|‘, ‘image‘, ‘multiimage‘,
                    ‘table‘, ‘hr‘, ‘baidumap‘, ‘pagebreak‘,
                    ‘anchor‘, ‘link‘, ‘unlink‘,
                ],
                cssPath : ‘‘,
                wellFormatMode : true,
                /* 指定上传文件的服务器端程序。 */
                uploadJson : ‘‘,
                /* 指定上传文件的服务器端程序。 */
                fileManagerJson : ‘‘,
                allowFileManager : true,
                afterCreate : function() {
                    this.sync();
                },
                afterBlur: function () { 
                    this.sync();
                     }
                     
            };  
            var editor = new Array();  
            KindEditor.ready(function(K) {  
                editor[0] = K.create(‘textarea[name=""]‘,options);  
                editor[1] = K.create(‘textarea[name=""]‘,options);   
                editor[2] = K.create(‘textarea[name=""]‘,options);  
                editor[3] = K.create(‘textarea[name=""]‘,options);  
            }); 

 

以上是关于KindEditor同时绑定多个富文本编辑器的主要内容,如果未能解决你的问题,请参考以下文章

KindEditor - 富文本编辑器 - 使用+上传图片

在线文本的编辑框——kindeditor富文本编辑的使用

优秀的富文本编辑器 Kindeditor

Springboot中使用kindeditor富文本编辑器

Springboot中使用kindeditor富文本编辑器

kindeditor富文本编辑器与环境结合冒出的bug