0

我对 IE8 中的这些行有更多问题:

 background: url('../images/sabao_x_top.gif') repeat-x top left,
        url('../images/sabao_x_foot.gif') repeat-x bottom left;

我用:

-pie-background: url('../images/sabao_x_top.gif') repeat-x top left, url('../images/sabao_x_foot.gif') repeat-x bottom left;
    behavior: url(../PIE.htc);

馅饼,没什么。

<!--[if lt IE 8]>
<script src="http://ie7-js.googlecode.com/svn/version/2.1(beta4)/IE8.js"></script>
<![endif]-->

没什么。

现在?

4

2 回答 2

2

您将该脚本发送到 ie 小于 ie8 的所有版本;将您的条件注释更改为 <!--[if lt IE 9]> 或 <!--[if ie 8]>

于 2012-04-27T22:52:26.283 回答
1

您还可以使用 IE8 加上 IE7 和 IE6

<!--[if lte IE 8]>
<script src="http://ie7-js.googlecode.com/svn/version/2.1(beta4)/IE8.js"></script>
<![endif]-->

这意味着如果条件小于或等于 IE8,则条件将起作用

于 2012-04-28T12:27:27.323 回答