2010-12-01 62 views

Répondre

1

Essayez définir le style comme un attribut

document.getElementById("myId").setAttribute("style", "opacity: 0.5"); 
1

L'opacité est une propriété de la propriété de style savoir

document.getElementById("myId").style.opacity = 0.5;