我是jquery的新手,我需要将一些代码从YUI迁移到jquery。 需要一些帮助才能从这开始。请帮助将以下的YUI代码翻译成jquery。
for ( var i = 0; i < objs.length; i++) {
var o = objs[i];
(function(obj, args, type, fn) {
YAHOO.util.Event.on(obj, type, function() {
fn.run(obj, args)
});
})(o.obj, o.args, this._type, this);
}
由于
答案 0 :(得分:2)
您内部的代码:
YAHOO.util.Event.on(obj, type, function() {
fn.run(obj, args)
});
最有可能被替换为:
$(obj).bind(type, function() {
fn.run(obj, args);
});
但代码很大程度上取决于obj
和type
提供的数据。您应该阅读有关事件类型的this jQuery documentation。