setInterval里面this指向的是window,下面的函数怎么理解 财富值92

2016-10-28 14:00发布

function Aaa(){     this.a = 12;     setInterval(this.show,1000); } Aaa.prototype.show = function(){     console.log(this.a); } var a = new Aaa();      

按照理解window里没有show的方法,结果打印出来的是a对象,理解不了,求大神指点

5条回答

一周热门 更多>