function (a, b) {
var c = a('meta[name="csrf-token"]').attr("content");
}(jQuery)// the function call is made here
提供的第一个参数是jQuery
,大jQuery
对象,相当于$
. 在您的通话中,a = jQuery
默认b = undefined
情况下,从未提供过。
(function(a, b) {
console.log(a); // 5
console.log(b); // 3
})(5, 3);
正如@dystroy 指出的那样,这是一个较短的代码技巧,但它通常不用于缩短undefined
,可以通过任何参数遗漏轻松获得。JavaScript 通常会被缩小,但缩小器无法缩小默认关键字,例如document
or window
。通过减小文件大小来提高性能。
一个更常见的场景是:
!function(w, d){
w.onload = function() {
var x = d.getElementById("whatever");
};
}(window, document);
以上所有内容都应该是 IIFE,或立即调用。使用括号或任何数学运算符将求值强制为表达式。
更新
将参数传递给函数。
(function(a, b) { // here I am defining an anonymous function. It has no name
console.log(a); // It takes two params, a and b.
console.log(b);
})(5, 3); // Because of the () parentheses around it: (function(){})
// the function is evaluated as an expression.
// because of the second group of params (5, 3) the function is called.
想象一下你正在这样做。
function do(a, b) {
// bla bla
};
do(5, 3);
将函数定义和函数调用粘合在一起,您将得到:
(function(a, b) {})(5, 3);