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