将数据从 jquery 对话框发送到父页面

发布于 2024-12-26 09:49:44 字数 146 浏览 1 评论 0原文

我已经使用了使用 IFrame 的 jquery ui 对话框,并将 URL 传递给了该 IFrame。因此,新页面在 Iframe 的对话框中打开。

在该对话框页面中进行一些处理后。我想在关闭事件时将一些数据从该对话框传递到我的页面。

请帮忙。

I have used jquery ui dialog using IFrame and passed URL to that IFrame. So new page opened in dialog box in Iframe.

After some processing in that dialog box page. I want to pass some data from that dialog box to my page on close event.

Please help.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

故事↓在人 2025-01-02 09:49:44

不知道这是否是唯一的解决方案,但您可以在对话框的关闭事件中写入要传递给某些不可见元素的数据。

例子:

$("..").dialog({...}).bind('dialogclose',function(){
          $("#someInvisibleElement").val(data);
});

Don't know if it is the only solution, but you can write the data you want to pass to some invisible element in the close event of the dialog.

Example:

$("..").dialog({...}).bind('dialogclose',function(){
          $("#someInvisibleElement").val(data);
});
把回忆走一遍 2025-01-02 09:49:44

要访问 iframe 上的父页面,您可以使用 window.parent

To access the parent page on an iframe you can use window.parent

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