访问父窗口中的点击事件
我正在尝试在所见即所得编辑器之外使用 ckeditor 文件浏览器。当我单击父文件浏览器窗口中的图像时,窗口将关闭。使用编辑器时,图像路径将插入到 ckeditor 内的文本字段中。我不想要相同的功能,但在常规文本字段中。
单击文本字段时,我设法打开文件浏览器窗口:
$('input.asset_field').click(function() {
window.open('/ckeditor/pictures','BrowseWindow','toolbar=no,status=no,resizable=yes,dependent=yes,scrollbars=yes,width=900,height=505');
});
当我选择图像时,文件浏览器关闭。 但是如何获取图像路径?这让我发疯! :)
我该去哪里?
I'm trying to use a ckeditor file browser outside the wysiwyg editor. When I'm clicking on an image in the parent, file browser, window the window closes. When using the editor the image path is inserted in a text field inside ckeditor. I wan't the same functionality but in a regular text field.
I've managed to open the file browser window when my textfield is clicked on:
$('input.asset_field').click(function() {
window.open('/ckeditor/pictures','BrowseWindow','toolbar=no,status=no,resizable=yes,dependent=yes,scrollbars=yes,width=900,height=505');
});
And when I select an image the file browser is closed. BUT how do I get the image path? This is driving me crazy! :)
Where do I go from here?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您在打开弹出窗口的页面中定义一个函数,
您可以从弹出页面调用以下函数
if you define a function within the page that opens the pop like
you can call the follwing from the popup page