相当于jQuery - Prototype中的.one()?

时间:2012-04-06 08:48:21

标签: jquery prototypejs

任何人都知道原型中.one()的替代品吗?

JQUERY FUNCTION

$("img").one('load', function() {
   // do stuff
}).each(function() {
   if(this.complete) $(this).load();
});

1 个答案:

答案 0 :(得分:1)

您可以尝试以下方法:

$$("img").each(function(i) {
    var handler = i.on("load", function() {
        handler.stop();
        // do stuff
    });
    // other stuff
});