欢迎各位兄弟 发布技术文章

这里的技术是共享的

You are here

JS判断img图片是否加载完成

shiping1 的头像

function isImgLoad(){
 

   if(!!window.ActiveXObject){
        // IE
        if(img.readyState == 'complete'){
            alert('finished');
        }
        else{
            alert('loading');
        }
    }
    else{
        // 非IE
        if(img.complete == true){
            alert('finished');
        }
        else{
            alert('loading');
        }
    }
}

 

来自 http://blog.sina.com.cn/s/blog_5f0dab1e01018vcd.html

普通分类: