0

我工作的网站之一在 IE8 中加载速度非常慢,我试图追查罪魁祸首。该网站是virginwines.com

有人对我如何使用浏览器工具找出导致问题的 JS 有任何建议吗?

4

2 回答 2

4

您可以使用 IE8 中的Developer Tools Profiler来查看它在哪里花费了大部分时间。

于 2010-12-08T17:47:55.980 回答
2

您可以使用Fiddler2 - 一个调试代理 - 查看 IE 和站点之间的流量。使用 IE8,该站点在 8 个带有返回 404 的无缓存指令的图像上停滞不前。

#   Result  Protocol    Host    URL Body    Caching Content-Type    Process Comments    Custom  
9   404 HTTP    www.virginwines.com /images/us/en/brands/virgin/internet_explorer/borderTopLeft.png 1,529   no-cache  Expires: Wed, 08 Dec 2010 17:42:00 GMT    text/html;charset=UTF-8 iexplore:1784           
10  404 HTTP    www.virginwines.com /images/us/en/brands/virgin/internet_explorer/borderTopCenter.png   1,529   no-cache  Expires: Wed, 08 Dec 2010 17:42:01 GMT    text/html;charset=UTF-8 iexplore:1784           
11  404 HTTP    www.virginwines.com /images/us/en/brands/virgin/internet_explorer/borderTopRight.png    1,529   no-cache  Expires: Wed, 08 Dec 2010 17:42:01 GMT    text/html;charset=UTF-8 iexplore:1784           
12  404 HTTP    www.virginwines.com /images/us/en/brands/virgin/internet_explorer/borderMiddleLeft.png  1,529   no-cache  Expires: Wed, 08 Dec 2010 17:42:01 GMT    text/html;charset=UTF-8 iexplore:1784           
13  404 HTTP    www.virginwines.com /images/us/en/brands/virgin/internet_explorer/borderMiddleRight.png 1,529   no-cache  Expires: Wed, 08 Dec 2010 17:42:02 GMT    text/html;charset=UTF-8 iexplore:1784           
14  404 HTTP    www.virginwines.com /images/us/en/brands/virgin/internet_explorer/borderBottomLeft.png  1,529   no-cache  Expires: Wed, 08 Dec 2010 17:42:02 GMT    text/html;charset=UTF-8 iexplore:1784           
15  404 HTTP    www.virginwines.com /images/us/en/brands/virgin/internet_explorer/borderBottomCenter.png    1,529   no-cache  Expires: Wed, 08 Dec 2010 17:42:03 GMT    text/html;charset=UTF-8 iexplore:1784           
16  404 HTTP    www.virginwines.com /images/us/en/brands/virgin/internet_explorer/borderBottomRight.png 1,529   no-cache  Expires: Wed, 08 Dec 2010 17:42:03 GMT    text/html;charset=UTF-8 iexplore:1784           

正如其他人所提到的,您可以使用 IE 开发人员工具栏 (F12),Firebug Lite适用于大多数主要浏览器。(如果您使用的是 FireFox,您应该已经熟悉完整的Firebug。)

于 2010-12-08T17:51:43.197 回答