我正在使用与 ckeditor(ckeditor inline)集成的 kcfinder 来上传图像和选择。通过单击浏览服务器按钮选择图像时,它按预期显示图像。但是当我右键单击图像时,它没有显示选择,选择缩略图选项,并且图像没有通过双击图像插入到模板中。
请帮助我弄清楚该功能。
CKEDITOR.editorConfig = function( config ) {
config.filebrowserBrowseUrl = '../kcfinder/browse.php?type=images';
config.filebrowserUploadUrl = '../kcfinder/upload.php?type=images';
config.extraPlugins = 'tokens,htmlSource,link';
config.removePlugins = 'flash';
config.baseFloatZIndex = 900;
config.toolbarGroups = [
{name: 'sourcedialog'},
{ name: 'clipboard', groups: [ 'clipboard', 'undo' ] },
{ name: 'editing', groups: [ 'find', 'selection', 'spellchecker' ] },
{ name: 'links' },
{ name: 'insert' },
{ name: 'tools' },
{ name: 'others' },
'/',
{ name: 'paragraph', groups: [ 'list', 'indent', 'blocks', 'align' ] },
{ name: 'styles' },
{ name: 'colors' },
{ name: 'tokens'},
{ name: 'htmlSource'}
];
};