如何加载浏览器特定的外部css文件?

时间:2014-04-01 06:28:37

标签: javascript css internet-explorer

我需要在页面的HEAD中添加对外部css文件的引用。 但它应该只为IE浏览器添加。

这可能吗?

<head>
<link type="text/css" rel="stylesheet" href="/themes/jfile.css" />

</head>

2 个答案:

答案 0 :(得分:0)

简单

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

或者

<!--[if lt IE 9]>
    According to the conditional comment this is IE lower than 9<br />
<![endif]--> 

答案 1 :(得分:0)

<!--[if IE 6]>
    <link rel="stylesheet" href='/Common/Css/ie6.css' type="text/css" />
<![endif]-->
<!--[if IE 7]>
    <link rel="stylesheet" href='/Common/Css/ie7.css' type="text/css" />
<![endif]-->
<!--[if IE 8]>
    <link rel="stylesheet" href='/Common/Css/ie8.css' type="text/css" />
<![endif]-->