糟糕毛衣

文章
3
资源
0
加入时间
2年10月21天

ECMAScript 面向对象技术:this 关键字

关键字 thisthis 的功能在 ECMAScript 中,要掌握的最重要的概念之一是关键字 this 的用法,它用在对象的方法中。关键字 this 总是指向调用该方法的对象,例如:var oCar = new Object;oCar.color = "red";oCar.showColor = function() { alert(this.color);};oCar...