var label = 2var obj={ label:1 a:function(){ console.log(this.label); }}obj.a(); //1var b = obj.ab(); //2为什么b会丢失原对象this,后面的原理是什么? 查看完整描述