我想用CKEditor中使用图像工具栏按钮添加的图像做一些事情。 我实际上想要获取网址并根据需要进行修改。
我该怎么做?
我可以使用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.
}
}
} );
} );
答案 0 :(得分: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 );
};
}
});