2012-04-06 72 views

回答

1

你可以嘗試以下方法:

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