尝试动态调整指向本地 PHP 页面的 iframe 的高度
我已经阅读了大量的帖子和文章,但没有找到专门解决我的问题的修复程序
我的父页面通过 iframe 指向本地子页面。
子页面是一个 php 调查,当用户单击下一个按钮时,它会更改页面的高度。 (并不是真正更改页面,而是在一个 .php 文件中重新填充内容)
我试图让父页面根据子页面的长度自动扩展和接触高度。
我有这个特定的需求,因为我在 WordPress 中工作,并且希望将 PHP 应用程序(调查)包含在 WordPress 主题的设计中。
如果有帮助,我们将不胜感激!
I've read through tons of posts and articles and haven't found a fix that works specifically for my problem
My parent page points via iframe to a local child page.
The child page is a php survey which changes height from page to page as the user clicks the next button. (Not really changing pages but re-populating content within one .php file)
I'm trying to have the parent page auto expand and contact height according to the length of the child page.
I have this specific need because I'm working within WordPress and want a PHP application (survey) to be wrapped within the design of the WordPress theme.
Ay help would be really appreciated!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这两个页面是否在同一个域中?如果是,那么实现此目的的最简单方法是在父页面和子页面上运行 JavaScript。
这是它如何工作的粗略想法。在子页面上:
在父页面上:
您可能需要调整高度,具体取决于 iframe 元素的边距/边框等。
如果这两个页面位于不同的域中,这将会困难得多。
iframe
之间的跨域通信很困难,特别是如果您想支持旧版浏览器。Are the two pages on the same domain? If yes, then the easiest way to achieve this is with JavaScript running on both the parent and the child page.
Here's a rough idea of how it might work. On the child page:
On the parent page:
You'll probably need to adjust the height, depending on the margins/borders/etc of the iframe element.
If the two pages are on different domains, this will be much harder. Cross-domain communication between
iframes
is difficult, particularly if you want to support older browsers.