$(document).ready(function(){ Uncaught ReferenceError: $ is not defined

后端 未结 8 1468
南笙
南笙 2021-02-06 23:43

Hi I am having a \"Uncaught ReferenceError: $ is not defined\" while using bellow codes

I am currently getting the following error in my log. I have been looking at the

8条回答
  •  既然无缘
    2021-02-07 00:32

    If you are sure jQuery is included try replacing $ with jQuery and try again.

    Something like

    jQuery(document).ready(function(){..
    

    Still if you are getting error, you haven't included jQuery.

提交回复
热议问题