空的[if IE]会改善网站性能吗?

时间:2012-06-27 02:40:09

标签: html internet-explorer

我正在挖掘网页上的一些HTML,并看到了这一点:

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<!--[if IE]><![endif]--><!--Empty IE conditional comment to improve site performance-->
<html lang="en">
  <head>

拥有空的IE条件是否真的能提高网站的性能?它如何改善绩效?

1 个答案:

答案 0 :(得分:2)

根据一些在线文章, IT DOES 如果您要加载IE条件css。 见http://www.phpied.com/conditional-comments-block-downloads/

如果您的页面中有此内容,例如:

<!--[if IE 6 ]>
<link type="text/css" rel="stylesheet"
      href="styles/ie6.css">
<![endif]-->

在加载主CSS之前,它将阻止进一步下载。

如果您在页面开头添加:

<!--[if IE]><![endif]-->

这不会发生。

<强> P.S。当我读到这篇文章时,我真的很惊讶。所以这是IE的笑话。