JQuery 提示错误 Uncaught ReferenceError: $ is not defined

在调试一个 JQuery 页面的时候,浏览器提示错误。

Uncaught ReferenceError: $ is not defined

解决办法

你需要查看下你的 Jquery script。

如果你使用的是:

<script src="https://code.jquery.com/jquery-3.4.1.slim.min.js" integrity="sha256-CSXorXvZcTkaix6Yvo6HppcZGetbYMGWSFlBw8HfCJo=" crossorigin="anonymous"></script>

那么你需要将 slim 去掉,修改为:

<script src="https://code.jquery.com/jquery-3.4.1.min.js" integrity="sha256-CSXorXvZcTkaix6Yvo6HppcZGetbYMGWSFlBw8HfCJo=" crossorigin="anonymous"></script>

就可以了。