DIV CSS 佈局教程網

 DIV+CSS佈局教程網 >> 網頁腳本 >> JavaScript入門知識 >> 關於JavaScript >> JavaScript控制圖片加載完成後調用回調函數的方法教程
JavaScript控制圖片加載完成後調用回調函數的方法教程
編輯:關於JavaScript     

本文實例講述了JavaScript控制圖片加載完成後調用回調函數的方法。分享給大家供大家參考。具體分析如下:

這段代碼可以控制指定區域內的圖片加載完成後執行指定的回調函數。
代碼如下:function when_images_loaded($img_container, callback) {
/* do callback when images in $img_container (jQuery object) are loaded. Only works when ALL images in $img_container are newly inserted images and this function is called immediately after images are inserted into the target. */
    var _imgs = $img_container.find('img'),
        img_length = _imgs.length,
        img_load_cntr = 0;
    if (img_length) {//if the $img_container contains new images.
        _imgs.on('load', function() {//then we avoid the callback until images are loaded
            img_load_cntr++;
            if (img_load_cntr == img_length) {
                callback();
            }
        });
    }
    else { //otherwise just do the main callback action if there's no images in $img_container.
        callback();
    }
}

希望本文所述對大家的javascript程序設計有所幫助。

XML學習教程| jQuery入門知識| AJAX入門| Dreamweaver教程| Fireworks入門知識| SEO技巧| SEO優化集錦|
Copyright © DIV+CSS佈局教程網 All Rights Reserved