5

我想在 CKEditor 的工具栏中添加一个按钮,但没有出现按钮。这是创建插件的代码保存在_source/plugins/footnote/

CKEDITOR.plugins.add('footnote',
{
    init: function(editor)
    {
        var pluginName = 'footnote';
        CKEDITOR.dialog.add(pluginName, this.path + 'dialogs/footnote.js');
        editor.addCommand(pluginName, new CKEDITOR.dialogCommand(pluginName));
        editor.ui.addButton('Footnote',
            {
                label: 'Footnote or Citation',
                command: pluginName
            });
    }
});

这是 config.js 的代码

CKEDITOR.editorConfig = function( config )

{

    config.toolbar = 'MyToolbar';

    config.extraPlugins = 'footnote';

    config.toolbar_MyToolbar =
      [

    ['Bold','Footnote','Italic']

    ];

};

只是粗体和斜体出现在工具栏中。但脚注按钮没有出现。谢谢你的帮助。

4

2 回答 2

6

您没有提供图标:

CKEDITOR.plugins.add('footnote', 
{
    icons: 'myfootnote',
    init: function (editor) {
        var pluginName = 'footnote';
        CKEDITOR.dialog.add(pluginName, this.path + 'dialogs/footnote.js');
        editor.addCommand(pluginName, new CKEDITOR.dialogCommand(pluginName));
        editor.ui.addButton('Footnote',
            {
                label: 'Footnote or Citation',
                icon: 'myfootnote',
                command: pluginName
            });
    }
});

请务必在 /plugins/footnote/icons/myfootnote.png 创建一个图标。

只接受 PNG。

于 2013-02-05T06:06:20.993 回答
3

按钮必须具有相同的名称(区分大小写)。

因此替换editor.ui.addButton('Footnote',editor.ui.addButton('footnote',

于 2014-09-18T10:32:13.260 回答