使用 Javascript 将图像动态添加到网页头部 - 浏览器会获取图像吗?
如果我要从 JavaScript 动态地将图像添加到网页,并将该图像添加到 中。部分,那么如果我设置图像 src 属性,浏览器会为我获取该图像还是不会打扰,因为它不显示来自 的图像渲染页面中的部分,没有必要提取它吗?
在 IE8 上,它仍然获取它,但我想知道我是否可以在所有浏览器上依赖该行为?
If I were to dynamically add an image to a web page from JavaScript, and I add that image to the <head> section, then if I set the image src property, will the browser fetch that image for me or will it not bother because as it doesn't display images from the <head> section in the rendered page, there is no point fetching it?
On IE8, it still fetched it, but I'm wondering if I can rely on that behavior on all browsers?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您知道的唯一方法是通过测试。使用大图像、浏览器集合和网络带宽监视器进行测试应该非常容易。
即使你发现大多数主流浏览器都这样做,我仍然不会依赖它。
你为什么想要这样做?
The only way you could know is through testing. It should be pretty easy to test with a large image, a collection of browsers, and a network bandwidth monitor.
Even if you can find that most major browser do this, I still wouldn't rely on it.
Why would you want to?