慕后森
var o = { a: function(){ console.log("a") return this }, b: function(){ console.log("b") }, c: { d: function(){ o.b() // 正确 console.log("c") return this } //或者 d:function(){ // this.b() //}.bind(o) } }