(function(fn){
var able=123;
function tmp(){
fn()
};
return tmp();
})(function(){alert(able)});报错;但是:
(function(fn){
var able=123;
function tmp(){
(function(){
alert(able)
})();
};
return tmp()
})();弹出123 这是为什么??
慕标琳琳
相关分类