TypeError: 'undefined' is not a function (evaluating '$(document)')

前端 未结 14 2012
猫巷女王i
猫巷女王i 2020-11-22 07:13
  1. I\'m using a WordPress site.
  2. I\'m including this script in the header.

When the script loads, I get this error:

TypeErro

14条回答
  •  耶瑟儿~
    2020-11-22 07:43

    I had this problem only on Chrome.

    I tried adding

    var $ =jQuery.noConflict();
    

    just before calling

    $(document).ready(function () {
    

    It worked.

    Thanks a lot

提交回复
热议问题