var x = 0; function test(a){ console.log(a,this.x) } var o={}; o.x = 1; o.m = test; o.m.apply(window)//这里想传入参数a,不知道要写在哪里? 查看完整描述