主题: 如何去掉某些功能?
作者: today, 发布日期: 2012-05-13 12:37:03, 浏览数: 2133

在线编辑器功能确实很强大,但我使用的地方有些功能用不上(也不能提供所有的功能),所以想去掉一些功能,怎么实现呢?如何把它删除?

作者: Roddy, 发布日期: 2012-05-13 15:08:37
需要用 items 参数配置。请参考 http://www.kindsoft.net/ke4/examples/simple.html
回复
作者: 观摩, 发布日期: 2012-05-13 17:21:17
var kindEditorItems = [
        'source', '|', 'undo', 'redo', 'cut', 'removeformat', 'copy', 'paste', 'justifyleft', 'justifycenter', 'justifyright',
        'justifyfull', 'insertorderedlist', 'insertunorderedlist', 'indent', 'outdent', 'subscript',
        'superscript', 'fontname', 'fontsize', '|', 'forecolor', 'hilitecolor', 'bold',
        'italic', 'underline', 'strikethrough', 'emoticons', 'link', 'unlink', 'image',
        'flash', 'media', 'insertfile', 'table'];
var kindEditorUpload = '/kindsoft/upload_json.ashx';

function createKindEditor(textareaId, callback) {
    var editor = KindEditor.create('#' + textareaId, { items: kindEditorItems, uploadJson: kindEditorUpload, resizeType: 0, afterCreate: function() { typeof (callback) == "function" ? setTimeout(function() { callback(); }, 1000) : ""; } });
    return editor;
}

回复
发表新帖 发表回复