kindEditor如何隐藏不需要的图标,比如隐藏增加图片的图标
查了一下使用手册,allowUpload这个属性没起作用,不知道还有哪些属性能控制

解决方案 »

  1.   

    var editor;
            KindEditor.ready(function (K) {
                editor = K.create('textarea[name="content1",name="content2",name="content3"]', {
                    resizeType: 2,
                    cssPath: ['../plugins/code/prettify.css', 'index.css'],
                    allowPreviewEmoticons: false,
                    allowImageUpload: false,
                    items: [
    'fontname', 'fontsize', '|', 'forecolor', 'hilitecolor', 'bold', 'italic', 'underline',
    'removeformat', '|', 'justifyleft', 'justifycenter', 'justifyright', 'insertorderedlist',
    'insertunorderedlist', '|', 'emoticons']
                });
            });
    其中items是你要显示的按钮名字,不用的就不用列出。
    还有这个控件的Demo里面有这样的事例,看看就OK