今天我正在努力解决“未捕获的错误:语法错误,无法识别的表达式:”。 我会传递一个预加载图像的函数的路径,但是当我打算调用它时,我得到错误:
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