не работает hover после javascript
Не могу понять почему после onmouseout перестает меняться фон посредством hover. Hover дает зеленый цвет. Onmouseout - красный.
Код:
|
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Тест</title>
<meta http-equiv="Content-Script-Type" content="text/javascript" />
<script type="text/javascript" src="script.js"></script>
<style>
*{text-align:center;}
#id2{background:#d08600; width:100px; height:100px;}
#id2:hover{background:#00ff00;}
</style>
</head>
<body>
<div id="id2" onmouseout="this.style.backgroundColor='#ff0000';">id2</div>
</body>
</html> |
Последний раз редактировалось lancer, 02.05.2010 в 22:29.
Причина: onmouseover вместо onmouseout написал.
|