<html> <script type="text/java script"> var TrueWidth=0; //图片实际宽度 var TrueHeight=0; //图片实际高度 var count=0; function BigSizePic(ThisPic){ if(count>=0){ ThisPic.width =TrueWidth; //图片显示的可视宽度 ThisPic.height = TrueHeight; //图片显示的可视高度 count--; }else{ ThisPic.width =60; //图片显示的可视宽度 ThisPic.height =60; //图片显示的可视高度 count=0; } } function ReSizePic(ThisPic){ var image=new Image(); image.src=ThisPic.src; TrueWidth = image.width; //图片实际宽度 TrueHeight = image.height; //图片实际高度 ThisPic.width = 60; //图片显示的可视宽度 ThisPic.height = 60; //图片显示的可视高度 }