jQuery: How can I use “$” instead of “jQuery”?

前端 未结 3 1492
感动是毒
感动是毒 2021-02-11 01:27

I have simple jQuery in my site, yet I keep getting this error:

Uncaught TypeError: Property \'$\' of object [object DOMWindow] is not a function
3条回答
  •  失恋的感觉
    2021-02-11 02:09

    You can wrap your code:

    (function($) {
        // here $ would be point to jQuery object
        $(document).ready(function() {
            $('#pass').keyup( ... );
        });
    })(jQuery);
    

提交回复
热议问题