如果我有以下情况:
function hello(name, callback) {
var hello1 = "Hello There " + name;
callback(hello1);
}
hello("John", function(hello1) {
alert(hello1);
});
我可以在警告框中得到“Hello There John”。如何使我可以拥有一个 hello2 变量,以便回调中有两个变量?我基本上想做类似的事情:
function hello(name, callback) {
var hello1 = "Hello There " + name;
var hello2 = "Greetings " + name;
callback(hello1, hello2);
}
hello("John", function(hello1, hello2) {
alert(hello1 + " " + hello2);
});