今天我正在努力解决“未捕获的错误:语法错误,无法识别的表达式:”。我会将路径传递给预加载图像的函数,但是当我要调用它时,出现错误:
preLoader('img/realizzazione-impianti-fotovoltaici-header.png');
这是功能:
var preLoader = function (arrayOfImages){
$(arrayOfImages).each(function(){
//$('<img/>')[0].src = this;
var cacheImage = document.createElement('img');
cacheImage.src = this;
cacheImg.push(cacheImage);
});//each
}//preLoader