首页 > 代码库 > jQuery未定义错误原因(jQuery is not define)

jQuery未定义错误原因(jQuery is not define)

使用jQuery时,必须把它写在最前面,这样浏览器才会先加载jQuery,否则会提示缺少对象。

正确

<script type="text/javascript" src="http://www.mamicode.com/js/jquery/jquery-1.4.3.min.js"></script>

<script type="text/javascript" src="http://www.mamicode.com/js/custom.js"></script>

错误

<script type="text/javascript" src="http://www.mamicode.com/js/custom.js"></script>

<script type="text/javascript" src="http://www.mamicode.com/js/jquery/jquery-1.4.3.min.js"></script>

jQuery未定义错误原因(jQuery is not define)