var length = 10; function fn(){ alert(this.length); } var obj = { length:5, method:function( fn /* , a */ ){ fn(); arguments[0](); // this.method.arguments[0](); // console.dir(arguments); // console.dir(this.method.length); // console.dir(arguments.length); } } obj.method(fn);
添加回答
举报
0/150
提交
取消