1

我想对使用 CKEditor 中的图像工具栏按钮添加的图像做一些事情。我实际上想获取 url 并在需要时进行修改。

我该怎么做?

我可以使用dataFilter但仅当图像直接粘贴到编辑器中时才能执行此操作。但是dataFilter当使用编辑器中的默认图像按钮添加图像时,规则不会执行。

CKEDITOR.replace( 'idContent' );

CKEDITOR.on( 'instanceReady', function( e ) {
    CKEDITOR.instances.idContent.dataProcessor.dataFilter.addRules( {
        elements: {
            "img": function (element) {
                var imageSrcUrl = element.attributes.src;    
                // Do some stuffs here.     
            }
        }
    } );
} );
4

1 回答 1

3

我使用以下代码实现了我的目的

CKEDITOR.on( 'dialogDefinition', function( ev ) {
    // Take the dialog name and its definition from the event data
    var dialogName = ev.data.name,
        dialogDefinition = ev.data.definition;

    if ( dialogName == 'image' ) {
        var onOk = dialogDefinition.onOk;

        dialogDefinition.onOk = function( e ) {
            var input = this.getContentElement( 'info', 'txtUrl' ),
                imageSrcUrl = input.getValue();

            //! Manipulate imageSrcUrl and set it 
            input.setValue( imageSrcUrl );

            onOk && onOk.apply( this, e );  
        };
    }
});
于 2013-07-30T10:25:14.720 回答