如何在IE8中追踪缓慢加载JS?

时间:2010-12-08 17:33:37

标签: javascript jquery ie-developer-tools

我工作的其中一个网站在IE8中加载速度极慢,我试图找出罪魁祸首。该网站是virginwines.com

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

2 个答案:

答案 0 :(得分:4)

您可以使用IE8中的Developer Tools Profiler查看其大部分时间的花费。

答案 1 :(得分:2)

您可以使用Fiddler2 - 一个调试代理 - 来查看IE和网站之间的流量。使用IE8,该网站在8个图像上停滞不前,其中no-cache指令返回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。)