<html> <head> <SCRIPT LANGUAGE="JavaScript"> <!-- //圖片按比例縮放 //注意:此事件必須使用img中的onload調用,否則會出現獲取不到圖片寬高的狀況 var flag=false; /** * ImgD 圖片對象 * iwidth 圖片要縮放的寬度 * iheight 圖片要縮放的高度 */ function DrawImage(ImgD,iwidth,iheight){ var image=new Image(); image.src=ImgD.src; if(image.width>0 && image.height>0){ flag=true; if(image.width/image.height>= iwidth/iheight){ if(image.width>iwidth){ ImgD.width=iwidth; ImgD.height=(image.height*iwidth)/image.width; }else{ ImgD.width=image.width; ImgD.height=image.height; } ImgD.alt=image.width+"×"+image.height; } else{ if(image.height>iheight){ ImgD.height=iheight; ImgD.width=(image.width*iheight)/image.height; }else{ ImgD.width=image.width; ImgD.height=image.height; } ImgD.alt=image.width+"×"+image.height; } } } //--> </script> </head> <body> <div id="tablist1" > 調用:<img src="123.jpg" onload="javascript:DrawImage(this,300,200)" /> </div> </body> </html>