如何在 YUI 中绑定并触发自定义事件和本机事件?

发布于 2024-10-22 04:47:22 字数 951 浏览 1 评论 0原文

我正在尝试使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

貪欢 2024-10-29 04:47:23

目前看来是不可能的。

Looks like it is currently impossible.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文