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-02-23 10:54  码农13  阅读(382)  评论(0编辑  收藏  举报