我必须将匿名函数的返回值作为参数传递给另一个函数 hello1()
hello1 = function(x,m) { console.log(m) };
return $(this).each(function() {
var self = this;
hello1(something , function(){ return(this); });
});
当我执行 console.log(m) 时,它显示 ... return(this); 而不是对象