16

我想知道如何使用 YUI3 以编程方式触发更改事件——我向一个选择框节点添加了一个更改侦听器:

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');

任何帮助,将不胜感激!

4

3 回答 3

12

change正如您所发现的,YUI 3.0 不支持模拟事件。但是它将在 YUI 3.1 中得到支持。它现在在后备箱里

您的第三次尝试:

Y.get('#mynode').simulate('change');

应该在 3.1 中工作。

编辑

看起来你可以event-simulate.js用主干版本替换 YUI 3.0 版本,它可以在其他 3.0 应用程序中工作。到目前为止,我还没有看到任何问题。

于 2010-02-04T17:41:22.650 回答
6

通常的解决方案不是以编程方式触发事件,而是将所有事件逻辑移动到一个函数中,并在适当的地方从您的代码中调用该函数。

Y.get('#mynode').on('change', function(e) {
    AlertUserOfChange();
});

function AlertUserOfChange()
{
    Alert(“changed me”);
}
于 2009-07-31T21:44:15.600 回答
-1

这个怎么样

Y.Event.simulate('#mynode', 'change');
于 2009-07-31T21:51:38.190 回答