2

CKEditor 允许您通过编辑文件 styles.js 将自定义样式添加到样式组合框(有关详细信息,请参阅 什么是用于添加自定义 HTML 元素的好的 javascript HTML 编辑器?

我想在工具栏中添加独特的按钮来应用我的自定义样式,而不是用户必须从样式组合中选择它们。

如何将自定义按钮添加到 CKEditor 工具栏?

4

1 回答 1

5

继续使用以下代码:

// Your custom style.
var myStyle = new CKEDITOR.style( {
    element: 'span',
    attributes: {
        'data-foo': 'bar',
        'class': 'myClass'
    },
    styles: {
        color: 'red'
    }
} );

CKEDITOR.replace( 'editor1', {
    on: {
        // Register command and button along with other plugins.
        pluginsLoaded: function() {
            var editor = this;

            // Registers a command that applies the style.
            // Note: it automatically adds Advanced Content Filter rules.
            this.addCommand( 'myStyle', new CKEDITOR.styleCommand( myStyle ) );

            // Add toolbar button for this command.
            this.ui.addButton && this.ui.addButton( 'myStyleButton', {
                label: 'My style',
                command: 'myStyle',
                toolbar: 'insert,10'
                // You may want to set some icon here.
                // icon: 'someIcon'
            } );
        }
    }
} );
于 2013-08-05T13:00:56.663 回答