本文介绍了什么是jquery.live的优秀yui替代品的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
jQuery.live
jQuery.live
在jQuery 1.3中添加:将处理程序绑定到所有当前和未来匹配元素的事件(如单击)。也可以绑定自定义事件。
Added in jQuery 1.3: Binds a handler to an event (like click) for all current - and future - matched element. Can also bind custom events.
是否有一个好的YUI替换可以做到这一点?
Is there a good YUI replacement which can do this?
推荐答案
在YUI3中,执行此功能。以下代码段将在正文中的任何p标记上触发一个名为clickHandler的方法。
In YUI3, delegates perform this function. The following snippet will fire a method called "clickHandler" on any 'p' tag in the body.
YUI().use('event', function(Y) {
Y.delegate("click", clickHandler, "body", "p");
});
YUI 2.8.0有功能,但语法略有不同。
YUI 2.8.0 has delegate functionality as well, but the syntax is slightly different.
这篇关于什么是jquery.live的优秀yui替代品的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!