var o = { a: function(){ console.log("a") return this }, b: function(){ console.log("b") }, c: { d: function(){ b() // 报错 console.log("c") return this } } }如何在 d 中使用 b 方法?
1 回答
慕后森
TA贡献1802条经验 获得超5个赞
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)
}
}
添加回答
举报
0/150
提交
取消