有人能解释一下第1行的语法吗? 我可以使用js和函数引用,但这段代码看起来有点令人困惑。 例如。它是函数声明和执行吗?
jQuery.noConflict();
(function($) {
$(function() {
// more code using $ as alias to jQuery
});
})(jQuery);
// other code using $ as an alias to the other library
答案 0 :(得分:2)
完全。
您创建一个带有一个参数的匿名函数,并使用参数jQuery
立即调用它。