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;
	}
}

 

相关文章:

  • 2021-06-20
  • 2022-03-02
  • 2021-10-20
  • 2021-10-01
  • 2021-12-25
  • 2021-11-24
猜你喜欢
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-02-24
  • 2021-12-25
  • 2022-12-23
  • 2021-12-15
相关资源
相似解决方案