blob: edf5012b30423203957196cf33e461603f7a6ced (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
|
<div id="test" style="display: block; background-color: black; background-position: top left; font-style: italic">test text!</div>
<script>
var id = document.getElementById('test');
alert(id.style.display);
id.style.display = 'none';
alert(id.style.display);
alert(id.style.fontStyle + ' ' + id.style['font-style']);
id.style.background = "black";
alert(document.getElementById('test').style.background);
alert(document.getElementById('test').style.backgroundColor);
alert(document.getElementById('test').style.backgroundPosition);
</script>
|