您可以使用$
但建议您不要。使用jQuery
或者类似链接中的示例,如果必须使用$
你可以这样做;
$.noConflict();
jQuery(document).ready(function($) {
// $() will work as an alias for jQuery() inside of this function
});
//$ will cause problems if put here:)
要将其仅用于函数,可以在末尾附加jQuery,如:
(function($) {
// $() will work as an alias for jQuery()
})(jQuery); //dont forget this part