将数据从 jquery 对话框发送到父页面
我已经使用了使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
不知道这是否是唯一的解决方案,但您可以在对话框的关闭事件中写入要传递给某些不可见元素的数据。
例子:
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:
要访问 iframe 上的父页面,您可以使用 window.parent
To access the parent page on an iframe you can use window.parent