// 图片地址 后面加时间戳是为了避免缓存var img_url = 'http://www.qttc.net/static/upload/2013/13643608813441.jpg?'+Date.parse(new Date());// 创建对象var img = new Image();// 改变图片的srcimg.src = img_url;// 加载完成执行img.onload = function(){// 打印alert('width:'+img.width+',height:'+img.height);};