2

我有一个 ckeditor 实例,我使用以下方法添加了一个自定义对话框:

CKEDITOR.dialog.add('quicklinkDialog', function(editor) {
   return {
     title: 'Quick Links',
     minWidth: 400,
     minHeight: 200,

     contents: [
       {
        id: 'tab1',
        label: 'Add a quick link',
        elements: [
        {
         type: 'html',
         html: '<p>This is some text and then: <a href="">Click me!</a></p>'
        }]
   };
 });

我想在我的对话框内的链接上添加一个“点击”事件侦听器。单击该链接时,内容将插入到我的 textrea 中(对话框也将关闭)。

任何人都知道我该怎么做?提前致谢!

4

1 回答 1

8

干得好:

{
    type: 'html',
    html: '<p>This is some text and then: <a href="">Click me!</a></p>',
    onLoad: function( a ) {
        CKEDITOR.document.getById( this.domId ).on( 'click', function() {
            var dialog = this.getDialog();
            dialog.hide();
            dialog._.editor.insertHtml( this.html );
        }, this );
    }
}

请参阅API以了解更多信息。

于 2013-07-24T12:50:55.997 回答