0

我正在使用 Firefox 16.0.2。
我正在使用 onload eventlistener 来调用增加变量值的脚本。
在增加变量之前,我需要获取变量的值。Safari 和 Chrome (Webkit) 给出了正确的结果,但 Firefox 总是提示“0”...

这是我的脚本:

var obj = {
    build: function() {
        var progressCount = 0; 
        var otherFunction = function(number) {
                alert(number);
        } 
        var finalFunction = function() {
                alert("done");
        } 
        var progress = function() {
                alert(progressCount);   //    !  very important line !
                progressCount++;
                otherFunction(progressCount);
                if (progressCount == ARRAY.length) {
                finalFunction();
                }
        }
        ARRAY=document.getElementsByClassName("picture")
        for (var i = 0; i < ARRAY.length; i++)
        ARRAY[i].addEventListener("load", progress);
    }
}
obj.build();

我还能尝试什么?非常感谢!

4

0 回答 0