yui2 和 yui3 事件
yui3 的 Y.on()
构造是否可以用于为 yui2 小部件上的事件设置侦听器,或者它们只是使用单独的事件系统?
Can the yui3 construct of Y.on()
be used to setup listeners for events on yui2 widgets, or do they simply use separate event systems?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
他们使用单独的事件系统。但是,您可以使用 Y.on() 设置 DOM 侦听器来触发 YUI 2 Widget 上的方法。
但更一般地说,
Y.on() 不能用于订阅 YUI 2 中的小部件自定义事件。
They use separate event systems. However, you can use Y.on() to set up DOM listeners that trigger methods on YUI 2 Widgets.
or more generically
Y.on() can't be used to subscribe to widget custom events in YUI 2, though.