如何在 YUI 中绑定并触发自定义事件和本机事件?
我正在尝试使用 YUI 绑定并触发以下事件,但是到目前为止,当我触发它们时,似乎没有一个事件会触发。
我要绑定的代码:
YUI().use('node-base', function(Y){
Y.one(el).on(event,callback);
});
我要触发的代码:
YUI().use('node-event-simulate', function(Y){
Y.one(el).simulate(event);
});
event
变量可以是以下任意字符串:
statechange
(自定义事件)anchorchange
(自定义事件)hashchange
(有时是本机事件,取决于浏览器功能)popstate
(有时是本机事件,取决于浏览器功能)
el
变量通常是 window
dom 元素,但也可能是选择器和其他 dom 元素。
这是我目前在 YUI 中尝试使其工作的尝试: http://jsfiddle.net/balupton/tFbum/
这是我想要在 jQuery 中工作的内容: < a href="http://jsfiddle.net/balupton/862Lg/" rel="nofollow">http://jsfiddle.net/balupton/862Lg/
谢谢大家:-)
I'm trying to bind and trigger the following events using YUI, however so far none of the events seem to fire when I trigger them.
My code to bind:
YUI().use('node-base', function(Y){
Y.one(el).on(event,callback);
});
My code to trigger:
YUI().use('node-event-simulate', function(Y){
Y.one(el).simulate(event);
});
The event
variable can be any of the following strings:
statechange
(custom event)anchorchange
(custom event)hashchange
(sometimes a native event, depends on browser features)popstate
(sometimes a native event, depends on browser features)
The el
variable is usually the window
dom element, though may also be selectors and other dom elements.
Here is my current attempt to get it working in YUI:
http://jsfiddle.net/balupton/tFbum/
Here is what I want working in jQuery: http://jsfiddle.net/balupton/862Lg/
Thanks guys :-)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
目前看来是不可能的。
Looks like it is currently impossible.