Dann passe Markus' Beispiel eben auf deines an.
Code:
farbe = document.getElementById('t1').style.backgroundColor
Nachtrag: Bei mir geht das einwandfrei:
HTML-Code:
<!DOCTYPE
html PUBLIC "
-//W3C//DTD XHTML 1.0 Strict//EN"
"
http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<
html>
<head>
<title>JS-Hintergrundfarbe für Dummies</title>
</head>
<body>
<div id="
t1" style="
background-color: #ff0000">Text</div>
<script type="
text/javascript">
farbe = document.getElementById('
t1').style.backgroundColor;
alert(farbe);
</script>
</body>
</
html>