如何检测浏览器是否支持iframe?

发布于 2024-11-02 22:03:57 字数 28 浏览 1 评论 0原文

有没有办法检测浏览器是否支持iframe?

Is there any way to detect if browser supports iframe?

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

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

发布评论

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

评论(4

楠木可依 2024-11-09 22:03:57

也许这会起作用?

HTML

<iframe ...>
  <script type="text/javascript">var iFramesSupported = false;</script>
</iframe>

Maybe this would work?

HTML:

<iframe ...>
  <script type="text/javascript">var iFramesSupported = false;</script>
</iframe>
巡山小妖精 2024-11-09 22:03:57

你可以随时测试一下...

<iframe src="user_can_see_iframes.php" width="0" height="0">
    <p>iframes not supported</p>
</iframe>

You can always test it...

<iframe src="user_can_see_iframes.php" width="0" height="0">
    <p>iframes not supported</p>
</iframe>
林空鹿饮溪 2024-11-09 22:03:57

所有主要桌面浏览器都支持 iFrame。

如果你的意思是在移动环境中,我设法在谷歌上找到这个: http://johannburkard.de/blog/www/mobile/iframe-support-on-mobile-devices.html

一些较旧的设备不支持 iframe。

All major desktop browsers support iFrames.

If you mean in a mobile context, I managed to find this on google : http://johannburkard.de/blog/www/mobile/iframe-support-on-mobile-devices.html

Some older devices don't support iframes.

慕巷 2024-11-09 22:03:57

创建一个虚拟 iframe 并在 JavaScript 中测试其属性。

Create a dummy iframe and test its properties in javascript.

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