0

给定一个iframe隐藏它们的媒体查询选择器,哪些移动浏览器将下载 iframe 内容,这将如何影响页面加载时间?

HTML

<iframe id="foo" src="http://www.example.com">

CSS

@media (max-width: 500px) {
    #foo{
         display: none;
    }
}
4

1 回答 1

1

由于 iframe 和 img 等标签始终会请求给定的来源,因此与任何其他请求一样,对网络有“正常”影响。这意味着,请求将在它出现在 html 上下文中时完成(增量)。

为了优化 iframe 加载时间,我建议阅读:http ://www.aaronpeters.nl/blog/iframe-loading-techniques-performance

于 2013-07-12T07:30:32.297 回答