如果我有 :
var obj= {
a:"something",
b:{
a:function (){
// Can I access obj properties through the this keyword here
}
}
};
我可以obj
通过函数this
中的关键字访问属性吗?obj.b.a
如果我有 :
var obj= {
a:"something",
b:{
a:function (){
// Can I access obj properties through the this keyword here
}
}
};
我可以obj
通过函数this
中的关键字访问属性吗?obj.b.a