【精简实用系列】等比例缩放图片JS版本
<script>
function picResize(obj,width,height){
wr = obj.width/width;
hr = obj.height/height;
if(wr >1&&wr >= hr) obj.width=width;
if(hr >1&&hr >= wr) obj.height=height;
}
</script>
<img src="http://style.repiankk.com/images/logo.png" onload="picResize(this,220,70)" onerror="javascript:this.src='http://style.repiankk.com/images/blank.png'" alt="热片看看网"/>