Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我在我的应用程序框架中定义自定义事件时遇到问题。定义是正确的,它可以通过以下方式调用它:
Y.one('#foo').on('event', fn)
但是当我想在应用程序框架中使用它时,在事件部分,它不起作用。我试过这段代码:
events: { '.button': { 'event': 'functionName' }, '.button': { click: 'otherFn' }
App 框架使用事件委托。您需要在合成事件中支持委派。查看为 DOM 订阅创建箭头事件以获取示例。