var test ={
'a':1,
'b':{
'b1':function(){
console.log(this === test);
}.bind(test)
}
test.b.b1();
为什么结果为false……
慕运维8079593
相关分类