YUI3 を使用してプログラムで変更イベントを発生させる方法を考えていました。1 つの選択ボックス ノードに変更リスナーを追加しました。
Y.get('#mynode').on('change', function(e) {
Alert(“changed me”);
});
スクリプトの別の場所でそのイベントを発生させたいとします。もちろん、ユーザーがブラウザで選択ボックスの値を変更すると機能します。しかし、プログラムで起動する方法をたくさん試しましたが、どれもうまくいきませんでした。含む:
// All below give this error: T[X] is not a function (referring to what's called in .invoke(), // in the minified javascript
Y.get('#mynode').invoke('onchange');
Y.get('#mynode').invoke('change');
Y.get('#mynode').invoke('on','change');
Y.get('#mynode').invoke("on('change')");
/* Tried using .fire() which I found here:
* http://developer.yahoo.com/yui/3/api/EventTarget.html#method_fire
* Nothing happens
*/
Y.get('#mynode').fire('change');
/* Looking around the APIs some more, I found node-event-simulate.js:
* http://developer.yahoo.com/yui/3/api/node-event-simulate.js.html,
* which by its name would seem to have what I want. I tried:
* Error: simulate(): Event 'change' can't be simulated.
* ( (function(){var I={},B=new Date().getTim...if(B.isObject(G)){if(B.isArray(G)){E=1;\n)
*/
Y.get('#mynode').simulate('change');
どんな助けでも大歓迎です!