0

我正在使用与 ckeditor(ckeditor inline)集成的 kcfinder 来上传图像和选择。通过单击浏览服务器按钮选择图像时,它按预期显示图像。但是当我右键单击图像时,它没有显示选择,选择缩略图选项,并且图像没有通过双击图像插入到模板中。

请帮助我弄清楚该功能。

jsfiddle

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'}
];


};
4

1 回答 1

0

任何面临上述问题的人

转到路径:

kcfinder\js\browser\files.js

在 219 处添加这两行

否则 { window.opener.CKEDITOR.tools.callFunction(0, fileURL,'');
窗口.close(); }

将解决问题。

参考:

http://docs.ckeditor.com/#!/guide/dev_file_browser_api http://docs.cksource.com/CKEditor_3.x/Developers_Guide/File_Browser_(Uploader)/Custom_File_Browser

于 2013-08-07T13:34:47.417 回答