0

我有 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'
        } );
    }
} );

更新代码后,当我按下按钮时没有发生任何事情,我检查了谷歌和这个网站,但我无法弄清楚我认为我在某些特殊字符上犯了错误,但我找不到问题所在。

如果我在发布这个问题时犯了一些错误,请原谅我,也请原谅我的英语不好,谢谢。

4

2 回答 2

0

使用 '\' 转义 '/' 就像我们在 C/C++ 或所有其他语言中所做的那样

所以,

editor.insertHtml( '[kod=delphi][\/kod]' );
于 2012-11-06T22:48:03.147 回答
0

谢谢大家的回答,我解决了这个

var baslangic="[kod=delphi]";
var bitis="[/kod]";
CKEDITOR.plugins.add( 'DKODU',
{
    init: function( editor )
    {
        editor.addCommand( 'DKODU',
            {
                exec : function( editor )
                {    
                 editor.insertHtml(baslangic);
                 editor.insertHtml('');
                 editor.insertHtml(bitis);
                }
            });
        editor.ui.addButton( 'DKODU',
        {
            label: 'Delphi Kodu Ekle',
            command: 'DKODU',
            icon: this.path + 'star.png'
        } );
    }
} );  
于 2012-11-08T23:43:04.743 回答