如何追踪IE8中加载缓慢的JS?
我工作的一个网站在 IE8 中加载速度非常慢,我正在尝试找出罪魁祸首。该网站是 virginwines.com
有人对如何使用浏览器工具找出导致问题的 JS 有任何建议吗?
One of the websites I work on loads extremely slow in IE8 and Im trying to track down the culprit. The website is virginwines.com
Anyone have any advice around how I can use browser tools to figure out which JS is causing the issue(s)?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以使用 开发者工具分析器,查看它大部分时间都花在哪里。
You can use the Developer Tools Profiler in IE8 to see where it is spending most of its time.
您可以使用 Fiddler2(调试代理)来查看 IE 和站点之间的流量。使用 IE8,该网站因无缓存指令而返回 404 的 8 个图像陷入停滞。
正如其他人提到的,您可以使用 IE 开发人员工具栏 (F12) 和 Firebug Lite 适用于大多数主要浏览器。 (如果您使用 FireFox,您应该已经熟悉完整的 Firebug。)
You can use Fiddler2 - a debugging proxy - to view traffic between IE and the site. With IE8, the site is getting stalled on 8 images with a no-cache directive that are returning a 404.
As mentioned by others, you can use the IE developer tool bar (F12) and Firebug Lite is available for most major browsers. (If you're using FireFox, you should already be familiar with the full Firebug.)