iPhone Web 应用程序中强制使用固定大小的 iFrame?

发布于 2024-12-18 00:51:15 字数 283 浏览 0 评论 0原文

我有一个 iFrame,其内容会改变大小。我希望我的 iframe 始终保持相同的大小。我的代码如下所示:

<iframe id="frame1" src="home.php" width="320" height="360"></iframe>

由于某种原因,在我的 iPhone 上,当单击链接且内容大小发生变化时,iFrame 也会发生变化。它在我的电脑浏览器上运行良好。我特意输入了宽度和高度,但显然我没有听……

这是怎么回事?请帮忙!

I have a iFrame whose content changes sizes. I want my iframe to stay the same size all the time. My code looks like this:

<iframe id="frame1" src="home.php" width="320" height="360"></iframe>

And for some reason, on my iPhone when links are clicked and the content changes sizes, so does the iFrame. It works fine on my computer browser. I specifically put in width and heights, but apparently I didn't listen...

What's up with that? Please help!

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

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

发布评论

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

评论(1

梦归所梦 2024-12-25 00:51:15

您是否尝试将内联样式放在那里来覆盖它?

<iframe id="frame1" src="home.php" width="320" height="360" style="width:320px;height:360px;"></iframe>

did you try to put inline style in there to overwrite it?

<iframe id="frame1" src="home.php" width="320" height="360" style="width:320px;height:360px;"></iframe>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文