我有一個問題,我想創建一個JavaScript類:類使用JavaScript中的原型
function Calculatore(txt,elements) {
this.p= new Processor();
this.output=txt;
$(elements).click(this.clickHandler);
}
Calculatore.prototype.clickHandler = function() {
var element=$(this);
// Code Here
// "this" contains the element.
// But what if I want to get the "output" var?
// I tried with Calculatore.prototype.output but no luck.
}
所以,我怎麼能解決這個問題?
哦,你救了我的頭髮,謝謝! – elios264