在 Iframe 中使用 Jquery Fancybox resize() 函数?
我是 Jquery 的初学者,我在 PHP 应用程序中使用 Fancybox(类型:iframe)。
在 iframe 内,有一个表单,一旦用户填写并显示提交表单后,Fancybox 应调整大小以容纳表单数据处理后将转发回来的数据。
我还希望用户关闭 Fancybox 警报后刷新网站的主页。
这怎么能做到呢?
谢谢
I am a beginner with Jquery and I am using Fancybox (type: iframe) within my PHP application.
Within the iframe, there is a form, once the user has filled & submitted the form, the Fancybox should resize so as to accomodate the data which will be relayed back once the formdata has been processed.
And I would also like the main page of the site to refresh once the user closes the Fancybox alert.
How can this be done?
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我只需要处理同样的问题,我通过为 FancyBox 创建一些辅助函数来解决它。 fb_resize(w,h) 函数调整 fancybox-content div 的大小,然后调用 $.fancybox.resize() 来调整修改后的内容。可以从任何内容(包括 iFrame)中调用 fb_close_any() 和 fb_resize_any(w,h) 函数来关闭 fancybox 或调整它的大小。
I just had to deal with the same question, and I solved it by creating some helper functions for FancyBox. The fb_resize(w,h) function resizes the fancybox-content div then calls $.fancybox.resize() to adjust for the modified content. The fb_close_any() and fb_resize_any(w,h) functions can be called from within any content, including an iFrame, to close or resize the fancybox.