随着 jQuery 2.0 Beta 2 的发布意味着对 IE > 9 和其他浏览器的支持,人们如何处理各种 jquery 版本的捆绑和缩小。jQuery 1.9 = IE6-8 jQuery 2.0 = IE9 和其他浏览器
jQuery 建议使用这个:
<!--[if lt IE 9]>
<script src="jquery-1.9.1.js"></script>
<![endif]-->
<!--[if gte IE 9]><!-->
<script src="jquery-2.0.0b2.js"></script>
<!--<![endif]-->
但是,如果您想捆绑 jQuery,您是否必须创建 2 个捆绑包,其中一个包含一个版本的 jquery,比如 v1.9,另一个包含 2.0 和 Use Rquest.BRowser?
点网阴影