15

可能重复:
通过检查 jQuery 对象获取 jQuery 版本

差不多吧。。

我不知道每次都会加载哪个 jQuery 版本,所以我希望能够对不同的版本做出不同的反应。

4

2 回答 2

22

prototypejQuery 在( )上公开其版本.fn

console.log( jQuery.fn.jquery );

例如输出字符串"1.8.0"

于 2012-08-10T13:01:49.160 回答
5
// Returns string Ex: "1.3.1"
$().jquery;

// Also returns string Ex: "1.3.1"
jQuery.fn.jquery;
于 2012-08-10T13:02:30.827 回答