0

このJQueryの部分を理解しようとしています。

$.fn.imageCrop = function(customOptions) {
        //Iterate over each object
        this.each(function() {
            var currentObject = this,
                image = new Image();

            // And attach imageCrop when the object is loaded
            image.onload = function() {
                $.imageCrop(currentObject, customOptions);
            };

            // Reset the src because cached images don't fire load sometimes
            image.src = currentObject.src;
        });

        // Unless the plug-in is returning an intrinsic value, always have the
        // function return the 'this' keyword to maintain chainability
        return this;
    };

私が理解できないのは、新しい空の Image オブジェクトが作成され、次に onload メソッドがイメージに追加され、リロードが発生しない場合に image.src が手動でリセットされることです。しかし、なぜリロードが発生するのでしょうか? 何の関係もないただの空の画像オブジェクトです。どういうわけか自動的にcurrentObjectにリンクされていますか?

4

1 に答える 1

1

これは私のコメント付きのコードです。役立つかどうかを確認してください。イベントを待機するようにsrcを設定する必要があります

    //this is a jquery plugin,
//jquery plugins start this way 
//so you could select $('img').imageCrop();
$.fn.imageCrop = function(customOptions) {
    //Iterate over each object
    this.each(function() {
        //keeps the current iterated object in a variable
        //current image will be kept in this var untill the next loop
        var currentObject = this,
        //creates a new Image object    
        image = new Image();
        // And attach imageCrop when the object is loaded
        //correct
        image.onload = function() {
            $.imageCrop(currentObject, customOptions);
        };
        //sets the src to wait for the onload event up here ^
        image.src = currentObject.src;
    });
    // Unless the plug-in is returning an intrinsic value, always have the
    // function return the 'this' keyword to maintain chainability
    return this;
};
于 2013-09-26T10:30:49.140 に答える