1 2 3 4 5 6 7 8 9 10 11 12 13
| var myDiv = document.getElementById('myDiv'); var computedStyle = document.defaultView.getComputedStyle(myDiv, null);
alert(computedStyle.backgroundColor); alert(computedStyle.width);
var myDiv = document.getElementById('myDiv'); var computedStyle = myDiv.currentStyle; alert(computedStyle.backgroundColor); alert(computedStyle.width);
|