我想仅为选定的图像元素添加上下文菜单项。上下文菜单项当前正在工作,但它显示在每个元素上而不是仅显示在图像元素上。到目前为止,这是我的代码:
CKEDITOR.on('instanceReady', function(ev) {
editor.addCommand('editImgCmd', {
exec : function( editor ) {
alert('editImgCmd');
}
});
var editImgCmd = {
label : editor.lang.image.menu,
command : 'editImgCmd',
group : 'image'
};
editor.contextMenu.addListener(function(element, selection ) {
return {
editImgCmd : CKEDITOR.TRISTATE_ON
};
});
editor.addMenuItems({
editImgCmd : {
label : 'Edit Image',
command : 'editImgCmd',
group : 'image',
order : 2
}
});
});
答案 0 :(得分:5)
使用getAscendant() chcek元素是img
:
editor.contextMenu.addListener( function( element, selection ) {
if ( element.getAscendant( 'img', true ) ) {
return {