js加载图片后修改大小

window.onload=function(){
  var images=document.getElementsByTagName("img");
  var imgLen=images.length;
  for(var i=0;i<imgLen;i++){
 alert(""+images[i].width);
 if(images[i].width>200)
 {
  images[i].style.width="100%";
 }
  }
}
原文地址:https://www.cnblogs.com/zhenfeng/p/4371195.html