这里的count怎么运行自增操作的,经过if else 语句不都绕过了count++吗
function load() {
var imgObj = new Image();
$(imgObj).on('load error', function() {
opts.each && opts.each(count);
if (count >= len) {
opts.all && opts.all();
} else {
load();
}
count++;
});
imgObj.src = imgs[count];
}