Warning: file_get_contents(/data/phpspider/zhask/data//catemap/2/jquery/83.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
未定义jQuery$未定义$(…)。可滚动不是函数_Jquery - Fatal编程技术网

未定义jQuery$未定义$(…)。可滚动不是函数

未定义jQuery$未定义$(…)。可滚动不是函数,jquery,Jquery,错误:ReferenceError:jQuery未定义/js/jQuery.tools.min.js 错误:ReferenceError:$未定义/js/popup.js 错误:TypeError:$(…)。scrollable不是一个函数/js/carousel.js 确保页面上引用了jQuery 编辑: 将jQuery添加到包含jQuery的所有其他文件上方的标题中,否则它将无法工作 编辑: 您需要在需要使用jQuery库的其他库之前加载jQuery库和jQuery UI。而且只有一个版本

错误:ReferenceError:jQuery未定义/js/jQuery.tools.min.js

错误:ReferenceError:$未定义/js/popup.js

错误:TypeError:$(…)。scrollable不是一个函数/js/carousel.js



确保页面上引用了jQuery

编辑:


将jQuery添加到包含jQuery的所有其他文件上方的标题中,否则它将无法工作

编辑:


您需要在需要使用jQuery库的其他库之前加载jQuery库和jQuery UI。而且只有一个版本的jQuery和jQuery UI!不能将两个不同的版本混合在一起

<script src="js/jquery-1.7.2.min.js" type="text/javascript"></script> 
<script src="js/jquery-ui-1.8.21.custom.min.js" type="text/javascript"></script>

// then the rest
<script type="text/javascript" src="js/jquery.tools.min.js"></script> 
<script type="text/javascript" src="js/popup.js"></script> 
<script src="js/jquery-timer.js" type="text/javascript"></script>

//然后剩下的

当你从这里或那里复制/粘贴代码时,停下来看一下,这些东西会做什么?

你添加了jquery.js吗?听起来你需要将jquery包含到你的页面中。@user2323604在加载tools.min.js之前?我的js列表是关于ve的,请检查out@user2323604使用浏览器工具查看未加载的内容。
<script src="http://code.jquery.com/jquery-1.9.1.min.js"></script>
<script src="js/jquery-ui-1.8.21.custom.min.js" type="text/javascript"></script>
<script type="text/javascript" src="js/jquery.tools.min.js"></script>
<script type="text/javascript" src="js/popup.js"></script>
<script src="js/jquery-timer.js" type="text/javascript"></script>
<script src="http://code.jquery.com/jquery-1.9.1.min.js"></script>
<script src="js/jquery-ui-1.8.21.custom.min.js" type="text/javascript"></script>
<script type="text/javascript" src="js/jquery.tools.min.js"></script>
<script type="text/javascript" src="js/popup.js"></script>
<script src="js/jquery-timer.js" type="text/javascript"></script>
<script src="js/jquery-1.7.2.min.js" type="text/javascript"></script> 
<script src="js/jquery-ui-1.8.21.custom.min.js" type="text/javascript"></script>

// then the rest
<script type="text/javascript" src="js/jquery.tools.min.js"></script> 
<script type="text/javascript" src="js/popup.js"></script> 
<script src="js/jquery-timer.js" type="text/javascript"></script>