检测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 库的名字改成不存在的名字的效果:
点击确定后:
总结:
成上可以知道,第一次方法是正确的,第二种方法有缺陷。