1

今日、「Uncaught Error: Syntax error, unrecognized expression:」と戦っています。画像をプリロードする関数にパスを渡しますが、呼び出すとエラーが発生します。

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
4

0 に答える 0