CKEditor - 自定义图像浏览器
我目前正在用 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'); }
});
}
});
这里有没有人知道如何启用回调函数以及如何使用它,以便我可以添加选中图片进入编辑器?
I'm currently developing a image browser in PHP and jQuery. I've managed to create a custom button plugin that opens my image browser in a new window (not a dialog box):
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'); }
});
}
});
Is there anyone here who knows how to enable the callback function and how this will be used so that I can add the selected pictures into the editor?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
好的。答案如下:
在父窗口中我有这个函数:
page_content是我的文本区域的id。
在弹出窗口中我有这个功能:
Ok. Here is the answer:
In the parent window I have this function:
page_content is the id of my textarea.
In the popup window I have this function: