小编典典

如何检查加载了哪个版本的 jQuery?

all

如何检查客户端机器上加载了哪个版本的 jQuery?客户端可能加载了 jQuery,但我不知道如何检查它。如果他们加载了它,我该如何检查版本和前缀,例如:

$('.class')
JQuery('.class')

阅读 83

收藏
2022-03-10

共1个答案

小编典典

if (typeof jQuery != 'undefined') {  
    // jQuery is loaded => print the version
    alert(jQuery.fn.jquery);
}
2022-03-10