javascript 如何获取return回来的对象值时间:2023-03-09 04:10:44 function aa(){ var b = 1; var c = b+2; return{ a1:b, a2:c } } var bb=aa(); alert(bb.a1);