网页在对宽度太大的图片进行缩放的一段代码如下,要放在<body onload="ReImgSize()">,但这样的话,页面中所有图片都执行了这个函数,我现在页面有一张图片,虽然宽度大于500,但不想执行这个缩小,怎么改这个代码呢?比如这个图片名称为123.gif function ReImgSize(){
  for (i=0;i<document.images.length;i++)
   {
   if (document.all){
if (document.images[i].width>500)
 {
       document.images[i].width="500"
       try{
       document.images[i].outerHTML='<a href="'+document.images[i].src+'" target="_blank" title="在新窗口打开图片">'+document.images[i].outerHTML+'</a>'
     }catch(e){}
    }
   }
  else{
if (document.images[i].width>500) {
  document.images[i].title="在新窗口打开图片"
  document.images[i].style.cursor="pointer"
  document.images[i].onclick=function(e){window.open(this.src)}
}
  }
  }
 }

解决方案 »

  1.   

    等比例缩放图片
    <script language="JavaScript">
    var flag=false;
    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;
      }  }
    }  
      

  2.   

    if (document.images[i].width>500) ====>>>>>>if (document.images[i].width>500&&document.images[i].src.indexOf("123.gif")!=-1) 
      

  3.   

    错了,是:if (document.images[i].width>500&&document.images[i].src.indexOf("123.gif")==-1