level 8
jy03692141
楼主
function a(){
this.a="a";
this.b="b";
alert(typeof(arguments)); //Object
}
还是不清楚这里的this到底是指什么,arguments因该是函数中的对象啊。
难道这里的this.a是 指function a( a ){}吗? 可是函数中也没定这东西啊。不理解啊
2012年03月18日 16点03分
1
this.a="a";
this.b="b";
alert(typeof(arguments)); //Object
}
还是不清楚这里的this到底是指什么,arguments因该是函数中的对象啊。
难道这里的this.a是 指function a( a ){}吗? 可是函数中也没定这东西啊。不理解啊