我有这种情况。 在一名伪装类的构造者中,我附上一件点击事件。 当活动启动时,我要从警示职能中提一下事件的标的。
伪装阶级建筑法
function MyClass(){
this.myClassAttribute = "A class attribute";
// here `this` refers to the object
$("span").click(function(){
// here `this` refer to a matched element, i.e. "span"
// How to get the value of `myClassAttribute`?
});
}
如何在没有全球变量的情况下提及该目标?