Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我的页面加载 jQuery。有什么方法可以找出 jQuery 的哪个版本?
您可以使用$().jquery;或$.fn.jquery
$().jquery;
$.fn.jquery
这将返回一个包含版本号的字符串,例如 1.6.2。
只需打开 Chrome 控制台或 Firebug 并在页面中输入
你可以做:
alert($().jquery);
您可以通过以下方式了解版本:
jQuery.fn.jquery