检查jquery是否使用Javascript加载

2022-08-30 00:52:03

我正在尝试检查我的Jquery库是否已加载到我的HTML页面上。我正在检查它是否有效,但有些事情不对劲。这是我所拥有的:

<html xmlns="http://www.w3.org/1999/xhtml">
    <head>
        <script type="text/javascript" src="/query-1.6.3.min.js"></script>
        <script type="text/javascript">
          $(document).ready(function(){
             if (jQuery) {  
               // jQuery is loaded  
               alert("Yeah!");
             } else {
               // jQuery is not loaded
               alert("Doesn't Work");
             }
          });
        </script>

答案 1

有些事情不对劲

好吧,您正在使用jQuery来检查jQuery是否存在。如果未加载jQuery,则甚至根本不会运行,并且您的回调也不会执行,除非您使用的是另一个库,并且该库碰巧共享相同的语法。$()$()

删除您的(使用类似的东西代替):$(document).ready()window.onload

window.onload = function() {
    if (window.jQuery) {  
        // jQuery is loaded  
        alert("Yeah!");
    } else {
        // jQuery is not loaded
        alert("Doesn't Work");
    }
}

答案 2

根据链接:

if (typeof jQuery == 'undefined') {
    // jQuery IS NOT loaded, do stuff here.
}


在链接的评论中还有一些,以及喜欢,

if (typeof jQuery == 'function') {...}

//or

if (typeof $== 'function') {...}

// or

if (jQuery) {
    alert("jquery is loaded");
} else {
    alert("Not loaded");
}


希望这涵盖了完成这件事的大多数好方法!