我需要在页面的HEAD中添加对外部css文件的引用。 但它应该只为IE浏览器添加。
这可能吗?
<head>
<link type="text/css" rel="stylesheet" href="/themes/jfile.css" />
</head>
答案 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]-->