84669 person learning
152542 person learning
20005 person learning
5487 person learning
7821 person learning
359900 person learning
3350 person learning
180660 person learning
48569 person learning
18603 person learning
40936 person learning
1549 person learning
1183 person learning
32909 person learning
I want to import the jquery package, but the browser reports an error. What is the reason?**Uncaught ReferenceError: $ is not defined
at a.js:1
(anonymous) @ a.js:1**
温故而知新,可以为师矣。 博客:www.ouyangke.com
a.js depends on jquery. You need to introduce jquery first and then a.js. Take a look at the page to see if it is in this order.Additional explanationI tried it on chrome and it worked.
$ is not defined, which means it has not been introduced successfully. Pay attention to the js reference order, jQuery should be placed first
a.js depends on jquery. You need to introduce jquery first and then a.js. Take a look at the page to see if it is in this order.
Additional explanationI tried it on chrome and it worked.
$ is not defined, which means it has not been introduced successfully. Pay attention to the js reference order, jQuery should be placed first