怎么检测jquery库是否加载

检测jquery库是否已经加载,可以使用如下JavaScript代码:

if(typeof jQuery !='undefined'){
 
    alert("jQuery library is loaded!");
 
}else{
 
    alert("jQuery library is not found!");
 
}

另外的选择?

在某些博客及论坛提及可以使用一下代码来达到同样的目的。

if(jQuery){  
 
   alert("jQuery library is loaded!");
 
}else{
 
   alert("jQuery library is not found!");
 
}

然而不管怎样,这是不起作用的,当jquery库没有被加载时,以上代码将会失败(jQuery  没有被 定义 jQuery is not define), 并且警告信息将不会被执行。

 

最后,一个jquery的检测代码是经常被推荐的。

<html>
<head>
<title>jquery library is loaded or not</title>
</head>
<body>
<h1>jquery library is loaded or not </h1>
<script type="text/javascript" src="../jquery-1.11.1.min.js"></script>
<script type="text/javascript">
if(typeof jQuery!='undefined'){
alert("jQuery library is loaded!");
} else{
alert("jQuery library is not found");

}

if(jQuery){  
 
   alert("jQuery library is loaded!");
 
    }else{
 
   alert("jQuery library is not found!");
 
   }
</script>
</body>
</html>

1 加载了jquery的效果图:




点击 确定后:


<html>
<head>
<title>jquery library is loaded or not</title>
</head>
<body>
<h1>jquery library is loaded or not </h1>
<script type="text/javascript" src="../jquery-1.11.108.min.js"></script>
<script type="text/javascript">
if(typeof jQuery!='undefined'){
alert("jQuery library is loaded!");
} else{
alert("jQuery library is not found");

}

if(jQuery){  
 
   alert("jQuery library is loaded!");
 
    }else{
 
   alert("jQuery library is not found!");
 
   }
</script>
</body>
</html>

把 jquery 库的名字改成不存在的名字的效果:


点击确定后:



总结:

成上可以知道,第一次方法是正确的,第二种方法有缺陷。


评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值