我无法在原型中向html select元素添加事件。我得到"对象不支持属性或方法stopObserving()"错误。
$$("div.kwTemplate .historial select").each(function(item) {
item.stopObserving();
item.observe("focus", this.getHistorialFromExternal.bindAsEventListener(this));
item.observe("change", this.setHistorialValue.bindAsEventListener(this));
}.bind(this));
这是html:
<div class="kwTemplate">
<div class="field historial idField_15926 idValueauto_15926">
<label for="_15926">A</label>
<select>
<option value="viewHistoric" default="default">Ver ...</option>
</select>
<input id="_15926" type="text" class="numeric validate" value="" maxlength="25" title="Tipo numérico con histórico de valores" size="28"/>
</div>
</div>
有什么想法吗?
提前致谢 哈维尔