如何在某些版本之间为IE浏览器添加条件?

时间:2016-02-10 作者:Bryan Willis

我知道wp_script_add_datawp_style_add_data 是添加IE条件的正确函数。

For example, this:

wp_script_add_data( \'foo\', \'conditional\', \'lt IE 9\' );

Would get you this:

<!--[if (lt IE 9)]>
  <script type="text/javascript" src="foo.js"></script>
<![endif]-->
<小时>

However, what if I want to do this (IE browsers between certain versions)?

<!--[if (gt IE 6)&(lt IE 9)]>
  <script type="text/javascript" src="foo.js"></script>
<![endif]-->

1 个回复
最合适的回答,由SO网友:majick 整理而成

你能不能把不同的字符串传过来?

wp_script_add_data( \'foo\', \'conditional\', \'(gt IE 6)&(lt IE 9)\' );
顺便说一下,这可能与:

wp_script_add_data( \'foo\', \'conditional\', \'(IE 7)|(IE 8)\' );
IE条件非常不可靠,因此需要测试。

相关推荐