Prototype.js对象不支持属性或方法

时间:2014-06-25 16:16:20

标签: prototype

我无法在原型中向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&#xE9;rico con hist&#xF3;rico de valores" size="28"/>
</div>
</div>

有什么想法吗?

提前致谢 哈维尔

0 个答案:

没有答案