我目前正在用 PHP 和 jQuery 开发图像浏览器。我设法创建了一个自定义按钮插件,可以在新窗口(不是对话框)中打开我的图像浏览器:
CKEDITOR.plugins.add('imgbrowser',
{
init: function(editor)
{
var pluginName = 'imgbrowser';
editor.ui.addButton('Imgbrowser',
{
label: 'Image browser',
command: pluginName,
click: function (editor) { window.open('/publish/browser/index.php','Image Browser','width=900,height=600'); }
});
}
});
这里有没有人知道如何启用回调函数以及如何使用它以便我可以将选定的图片添加到编辑器中?