如何以编程方式了解jQuery版本

时间:2012-08-10 13:01:18

标签: javascript jquery

  

可能重复:
  Get jQuery version from inspecting the jQuery object

差不多......

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

2 个答案:

答案 0 :(得分:18)

jQuery在prototype.fn)上公开其版本:

console.log( jQuery.fn.jquery );
例如,

输出字符串"1.8.0"

答案 1 :(得分:3)

// Returns string Ex: "1.3.1"
$().jquery;

// Also returns string Ex: "1.3.1"
jQuery.fn.jquery;