0
任何人都知道原型中.one()
的替代方法嗎?等效於jQuery - .one()in Prototype?
jQuery函數
$("img").one('load', function() {
// do stuff
}).each(function() {
if(this.complete) $(this).load();
});
任何人都知道原型中.one()
的替代方法嗎?等效於jQuery - .one()in Prototype?
jQuery函數
$("img").one('load', function() {
// do stuff
}).each(function() {
if(this.complete) $(this).load();
});
你可以嘗試以下方法:
$$("img").each(function(i) {
var handler = i.on("load", function() {
handler.stop();
// do stuff
});
// other stuff
});