js 兼容设置透明度

function setAlphaOpacity(elm,value){
	elm=typeof elm=="string"?document.getElementById(elm):elm;
	if(document.all){  //IE
		elm.style.filter='alpha(opacity='+value+')';
	}else{             //FF
		elm.style.opacity=value/100;
	}
}

 

posted @ 2012-03-10 10:43  xngeer  阅读(2907)  评论(0)    收藏  举报