下面这段代码将把image调整的height和width都适合制定大小。
<img src="xxxx" border="0" onload="resizeimage(this,170,50);"/>
<script language='javascript'> 
function resizeimage(img,maxHeight,maxWidth) 
{ 
var w=img.width,h=img.height; 
if (h>maxHeight) 
{ 
img.height=maxHeight; 
img.width=(maxHeight/h)*w; 
w=img.width;
h=img.height;
} 
if (w>maxWidth) 
{ 
img.width=maxWidth; 
img.height=(maxWidth/w)*h; 
} 
} 
</script>