// ---------------------------------------------------
//  方法:setSelectReadOnly  用于设定极select控件ReadOnly,
//		这个一个模拟只读不是真的只读
//		使用了onbeforeactivate,onfocus,onmouseover,onmouseout事件
//	示例:< img src='img.jpg' onload='ImgAutoSize(ImgD,FitWidth,FitHeight)' > ;
//  create by sl 
// ---------------------------------------------------
function ImgAutoSize(imgD,FitWidth,FitHeight) 
{
var image1=new Image(); 
image1.onload = function ()
{
	if(this.width>0 && this.height>0) 
	{ 
		if(this.width/this.height>= FitWidth/FitHeight) 
		{ 
			if(this.width>FitWidth) 
			{ 
				imgD.width=FitWidth; 
				imgD.height=(this.height*FitWidth)/this.width; 
			} 
			else 
			{ 
				imgD.width=this.width; 
				imgD.height=this.height; 
			} 
		} 
		else 
		{ 
			if(this.height>FitHeight) 
			{ 
				imgD.height=FitHeight; 
				imgD.width=(this.width*FitHeight)/this.height; 
			} 
			else 
			{ 
				imgD.width=this.width; 
				imgD.height=this.height; 
			} 
		} 
	}
	image1 = null;
}
	posted on 2008-06-05 15:10 
无声 阅读(860) 
评论(0)  编辑  收藏  所属分类: 
职场生活