{filelink=856}
document.onclick=EditElement;
function getStyle(obj,jsprop,cssprop) {
if (obj.currentStyle) {
return obj.currentStyle[jsprop];
} else if (window.getComputedStyle) {
return document.defaultView.getComputedStyle(obj,null).getPropertyValue(cssprop);
} else {
return null;
}
}
function EditElement( ) {
var obj = document.getElementById("myDiv");
alert(obj.style.backgroundColor);
alert(getStyle(obj,"backgroundColor","background-color"));
obj.style.backgroundColor="#ff0000";
alert(getStyle(obj,"backgroundColor","background-color"));
alert(obj.style.backgroundColor);
}
Cliquez sur le document pour obtenir les propriétés de la balise
Exemple de Modification de balise div en javascript.