我正在刷新回调函数,并从http://javascriptissexy.com/understand-javascript-callback-functions-and-use-them/#
中看到了以下段落“当我们将回调函数作为参数传递给另一个函数时,我们只传递函数定义。我们没有在参数中执行函数。换句话说,我们没有传递具有尾随对的函数像我们执行函数时那样执行括号()。
由于contains函数在其参数中具有回调函数作为函数定义,因此它可以随时执行回调。“
有人可以解释一下吗?以下是他们提供的两个例子。
//The item is a callback function
$("#btn_1").click(function() {
alert("Btn 1 Clicked");
});
这是另一个例子:
var friends = ["Mike", "Stacy", "Andy", "Rick"];
friends.forEach(function (eachName, index){
console.log(index + 1 + ". " + eachName); // 1. Mike, 2. Stacy, 3. Andy, 4. Rick
});
“请注意,回调函数不会立即执行。它在包含函数体内的某个指定点处被”回调“(因此得名)。所以,即使第一个jQuery示例如下所示:
//The anonymous function is not being executed there in the parameter.
//The item is a callback function
$("#btn_1").click(function() {
alert("Btn 1 Clicked");
});
稍后将在函数体内调用匿名函数。即使没有名称,它仍然可以通过包含函数的arguments对象来访问。“
对于第一个使用jquery的例子,他们究竟在说什么。如果单击#btn_1元素,是否会执行匿名函数?我假设如果单击该按钮将执行它,但该段落中的措辞令人困惑?
同样,对于第二个例子,他们不需要调用他们作为参数传递的函数吗?它是匿名的吗?
答案 0 :(得分:9)
在这两个示例中,您都将匿名函数作为参数传递。
$("#btn_1").click(function() {
alert("Btn 1 Clicked");
});
jQuery的click方法将函数作为其第一个参数。所以想象点击的功能定义是:
function click(fn) {
// fn will contain a reference to any
// function passed as the first parameter to click
// merely calling fn does nothing, because you are just 'calling'
// the reference.
fn;
// Since what is inside of fn is a function, you can execute it
// with the () syntax
fn();
}
// Now, you have many ways to pass a function as the first parameter to the function
// 1. As an anonymous function:
click(function() {
console.log("Hi");
});
// 2. As a named function:
click(function hello() {
console.log("Hi");
});
// 3. As a reference to a function declaration
function hiThere() {
console.log("Hi");
}
click(hiThere);
// 4. As a variable that holds an anonymous function inside
var howdy = function () {
console.log("howdy");
};
click(howdy);
想象一下,函数就像变量,但它们内部的内容可以在最后用()
执行。
function hi() {
console.log('bye');
}
hi; // Calls the reference, but does not execute it. This does nothing.
hi.toString(); // Returns the function as a string
hi(); // Executes the code within the function
每当你声明一个命名函数时,你可以根据它的名称对它进行处理,就像你对变量一样。当然,与变量不同,它们在内部保存可执行代码,而不是值。
你不能引用匿名函数,因为它很好......匿名。 除非,您将其保存在具有名称的内容中,例如var
。
var iHoldAFunctionInside = function () {
console.log('Im not so anonymous now');
};
iHoldAFunctionInside(); // Logs "Im not so anonymous now"
这就是为什么你可以将一个匿名函数作为参数传递给一个函数,它可以将它作为一个回调来执行。因为参数现在“保持”。其中的匿名函数:
function iExecuteYourCallback(callback) {
// callback contains the anonymous function passed to it
// Similar to doing:
// var callback = function () { };
callback();
}
iExecuteYourCallback(function() {
console.log('Im a callback function!');
});
希望这有助于澄清一些事情。
答案 1 :(得分:2)
在javascript函数中,第一类成员可以将函数作为参数传递,被调用函数可以将其作为命名参数接受。
一个简单的例子如下:
function testme(callback) {
//here the argument callback refers to the passed function
//the timer is used just to delay the execution of the callback
setTimeout(function () {
//the passed function is called here
callback();
}, 1000)
}
testme(function () {
alert('x')
})
演示:Fiddle
在您的示例中,是的,一旦点击了标识为btn_1
的元素,就会执行第一个回调。