function a(){
var a = 10;
function b(){
alert('执行方法'+(a+10));
}
return function(){
return b();
};
怎么让alert('执行方法'+(a+10)); 执行呢,求解
李晓健
相关分类