TypeError: $ is not a function when calling jQuery function

后端 未结 16 1820
慢半拍i
慢半拍i 2020-11-22 02:42

I have a simple jQuery script in a WordPress plugin that is using a jQuery wrapper like this:

$(document).ready(function(){

    // jQuery code is in here

}         


        
16条回答
  •  既然无缘
    2020-11-22 03:04

    You come across this issue when your function name and one of the id names in the file are same. just make sure all your id names in the file are unique.

提交回复
热议问题