CKEditor:显示插件按钮,但命令不起作用

时间:2016-10-26 09:55:37

标签: ckeditor

首先,感谢您的支持。

我试图为CKEditor创建我的第一个插件。 我使用了官方教程:http://docs.ckeditor.com/#!/guide/plugin_sdk_sample

按钮出现在工具栏中。但是,如果我点击它,没有任何反应。

这是我的plugin.js代码

CKEDITOR.plugins.add( 'drmail', {
    icons: 'drmail',
    init: function( editor ) {
        editor.addCommand( 'drmailCommand', {
            exec: function( editor ) {
                var now = new Date();
                editor.insertHtml( 'The current date and time is: <em>' + now.toString() + '</em>' );
            }
        });
        editor.ui.addButton( 'DRmail', {
            label: "E-Mail Adresse hinzufügen",
            command: 'drmailCommand',
            toolbar: 'insert'
        });
    }
});

1 个答案:

答案 0 :(得分:0)

感谢您的帮助。

我找到了。 (JS-Debugger的提示非常好) 我在Cache中有一个旧的非功能版Script。

迪安