0

私が取り組んでいる Web サイトの 1 つは、IE8 での読み込みが非常に遅く、犯人を突き止めようとしています。ウェブサイトは virginwines.com です。

どのJSが問題を引き起こしているかをブラウザツールを使用して特定する方法について、誰かアドバイスがありますか?

4

2 に答える 2

4

IE8 でDeveloper Tools Profilerを使用して、最も多くの時間を費やしている場所を確認できます。

于 2010-12-08T17:47:55.980 に答える
2

Fiddler2 (デバッグ プロキシ)を使用して、IE とサイト間のトラフィックを表示できます。IE8 では、404 を返す no-cache ディレクティブを持つ 8 つの画像でサイトが停止します。

#   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 に答える