该代码非常具有解释性。我在做什么是错的。onclick
如果在对象方法中声明了对象,如何访问 A 对象的属性A
?
function A(){
this.a = 0;
};
A.prototype.myfun= function(){
var b = document.getElementsByClassName("myclassName");
b[0].onclick = function(e){
//How can I get the a property of the A object in here?
this.a = 1;
}
};
我可以以某种方式将其作为这样的论点传递吗?
b[0].onclick = function(e, this){