访问父窗口中的点击事件

发布于 2024-12-18 07:38:50 字数 451 浏览 1 评论 0原文

我正在尝试在所见即所得编辑器之外使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

提笔书几行 2024-12-25 07:38:50

如果您在打开弹出窗口的页面中定义一个函数,

function setUrl(url) {
    //some logic
}

您可以从弹出页面调用以下函数

window.opener.setUrl(theUrlYouClicked);

if you define a function within the page that opens the pop like

function setUrl(url) {
    //some logic
}

you can call the follwing from the popup page

window.opener.setUrl(theUrlYouClicked);
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文