如何检查客户端机器上加载了哪个版本的 jQuery?客户端可能加载了 jQuery,但我不知道如何检查它。如果他们加载了它,我该如何检查版本和前缀,例如:
$('.class') JQuery('.class')
if (typeof jQuery != 'undefined') { // jQuery is loaded => print the version alert(jQuery.fn.jquery); }