functiona(){};a.prototype.testThis=function(){console.log(a.prototype==this);//falseconsole.log(a==this);//falseconsole.log(b==this);//true};varb=newa();b.testThis();//按理说,prototype是一个对象,对象的this应该指向对象本身,也就是prototype,经过测试,它不指向a.prototype,也不指向a,而指向b。
添加回答
举报
0/150
提交
取消