我有 vbulletin 4.2.0 我在这篇文章的编辑器中添加了一个特殊按钮;
http://www.vbulletinguru.com/2012/add-a-new-toolbar-button-to-ckeditor-tutorial/
我想做的是用这个按钮添加一个语法高亮代码。
当我使用下面的代码时,它工作正常;
CKEDITOR.plugins.add( 'YourPluginName',
{
init: function( editor )
{
editor.addCommand( 'SayHello',
{
exec : function( editor )
{
editor.insertHtml( "Hello from my plugin" );
}
});
editor.ui.addButton( 'YourPluginName',
{
label: 'My Button Tooltip',
command: 'SayHello',
icon: this.path + 'YourPluginImage.png'
} );
}
} );
所以我将此代码更改为此,因为我想添加如下特定文本;
CKEDITOR.plugins.add( 'DKODU',
{
init: function( editor )
{
editor.addCommand( 'SayHello',
{
exec : function( editor )
{
editor.insertHtml( '[kod=delphi][/kod]' );
}
});
editor.ui.addButton( 'DKODU',
{
label: 'My Button Tooltip',
command: 'SayHello',
icon: this.path + 'star.png'
} );
}
} );
更新代码后,当我按下按钮时没有发生任何事情,我检查了谷歌和这个网站,但我无法弄清楚我认为我在某些特殊字符上犯了错误,但我找不到问题所在。
如果我在发布这个问题时犯了一些错误,请原谅我,也请原谅我的英语不好,谢谢。