我已建造了一个控制参数(html控制参数)的小类,试图在控制上加一个<条码>交换代码>的活动,但我有以下错误:
htmlfile: 未执行
//-------------- the code
Contrl.prototype.AddChangeEvent = function() {
var element = this.docID;
var fn = function onChange(element) {
// action
};
if (this.tag == "input" && (this.el.type == "radio")) {
this.el.onclick = fn(element); // there i have the error
}
else {
this.el.onchange = fn(element); // there i have the error
}
}