不同的浏览器对初始页面加载时间的处理是否不同?

发布于 2024-12-09 07:50:18 字数 204 浏览 1 评论 0原文

我的网页初始加载时间在 Firefox、Safari 和 Opera 中不到 2 秒。但同一页面在 IE7/IE8 中加载需要 29 秒。浏览器对初始时间的处理是否不同?如何优化 IE 浏览器的页面加载时间?

附上网页测试图像,显示 IE 中的初始加载时间较长。初始页面加载时间

My webpage initial loads time is less than 2 seconds in firefox, Safari and Opera. But the same page takes 29 seconds to load in IE7/IE8. Do browsers handle initial time differently? How do I optimize the page load time for IE browsers?

Attaching the webpagetest image which shows the high initial load time in IE.Initial page load time

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

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

发布评论

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

评论(1

陌生 2024-12-16 07:50:18

影响页面加载速度的因素有很多。我怀疑可能有两件事对 IE 造成不利:

  • IE <= 8 中的 javascript 引擎比
  • IE 用来将并行下载限制为每个主机 2 个的其他引擎慢方式,因此您'按顺序重新下载大约 2mb 的图像

这是公共网页吗?您应该努力减少资源的大小,所有内容(HTML/CSS/JS/图像)都很大。整个页面不应超过 600kb,理想的情况是 300kb 以下。

There are many factors comprising page load speed. I suspect there could be two things making this bad for IE here:

  • The javascript engine in IE <= 8 is way slower than anything else
  • IE used to limit parallel downloads to 2 per host, so you're download those ~2mb of images in sequence

Is this a public webpage? You should work reducing the size of your assets, everything (HTML/CSS/JS/Images) is huge. Pages should seldomly go over 600kb as a whole, downards of 300kb is ideal.

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