2014年7月1日 星期二

IE 條件註解 (IE Conditional comment)

人客呀!看到這種註解,別亂砍,會害網頁走山阿!

IE Conditional Comment  只對IE瀏覽器有效,其他瀏覽器會當成註解。

Example:

<!--[if IE]>
    只要是IE,該區塊會運作。
<![endif]-->

<!--[if IE 7]>
  如果是IE7,該區塊會運作。
<![endif]-->



<!--[if lt IE 7]>
  比IE7版本小的,該區塊會運作。
<![endif]-->

<!--[if lte IE 7]>
  小於或等於IE7的版本,該區塊會運作。
<![endif]-->

<!--[if gte IE 7]>
  大於或是等於IE7的版本,區塊會運作。
<![endif]-->

<!--[if !IE]>-->
  如果不是IE,此區塊會運作。
<!--<![endif]-->

<!--[if (IE 7)|(IE 8)]>
  如果是ie7或ie8,該區塊就會運作。
<![endif]-->

參考文件:

沒有留言:

張貼留言