jQuery 官方发布了下一阶段 jQuery 的路线图,该路线图显示 jQuery 1.8 将在一个月内发布,而其他后续版本的计划如下:
1、jQuery 1.9 (early 2013): 该版本将移除所有在 1.8 版本中废弃的接口,其他一些可能做为插件或者可选 API 使用,将继续支持 IE 6/7/8
2、jQuery 1.9.x (ongoing in 2013 and beyond): 该版本将持续修复 1.9 中出现的 bug
3、jQuery 2.0 (early 2013, not long after 1.9): 该版本在 API 上兼容 1.9 版本,但不再支持 IE 6/7/8
你也可以使用下面的代码
<!- -[if lt IE 9]>
<script src="jquery-1.9.0.js"></script>
<![endif]- ->
<!--[if gte IE 9]><!- ->
<script src="jquery-2.0.0.js"><</script>
<!--<![endif]- ->
- 1.
- 2.
- 3.
- 4.
- 5.
- 6.
详细的说明请看官方博客:http://blog.jquery.com/2012/06/28/jquery-core-version-1-9-and-beyond/