1

画像オブジェクトを作成する関数があります。画像に src を指定し、読み込まれた画像を DOM に追加する load 関数を追加します。常にページに画像の2つのインスタンスを追加していることを除いて機能し、その理由がわかりません。これが私のページに2つの画像を追加する理由を誰か教えてもらえますか?

var img = new Image();

$(img).load(function () {               
    $('#imageContainter').append(this);
    $(this).fadeIn();
})              
.error(function () {
    // notify the user that the image could not be loaded
})              
.attr('src', '' + _filename);   

「_filename」はソースパスで、「imageContainer」は画像をロードする div です。

どんな助けでも大歓迎です。

4

1 に答える 1