Показать сообщение отдельно
  #1 (permalink)  
Старый 10.08.2009, 19:17
Новичок на форуме
Отправить личное сообщение для Sed0Y Посмотреть профиль Найти все сообщения от Sed0Y
 
Регистрация: 10.08.2009
Сообщений: 7

Как совместить работу onmouseover, onmouseout и onclick
Помогите

Вот уже дня 3 ищу в инете и не могу найти решение моей проблемы...

к примеру:

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN"><html><head>
<title></title>
<meta http-equiv="Content-Type" content="text/html; charset=Windows-1251">
<style type="text/css">	td{background-color: blue;} </style>
<script type="text/javascript"><!--
	function over_(oo){
		var o = document.getElementById(oo);
			o.style.background = 'green';	
	}	
	function out_(oo){
		var o = document.getElementById(oo);
			o.style.background = 'blue';	
	}	
//-->
</script>
</head>
<body>
<table border="0" cellpadding="0" cellspacing="0" width="50%" align="center">
	<tr >
		<td width="25" align="center" id="text1" onmouseover="over_('text1')" onmouseout="out_('text1')">Текст №1</td>
		<td width="25"  align="center" id="text2" onmouseover="over_('text2')" onmouseout="out_('text2')">Текст №2</td>	
		<td width="25"  align="center" id="text3" onmouseover="over_('text3')" onmouseout="out_('text3')">Текст №3</td>
		<td width="25"  align="center" id="text4" onmouseover="over_('text4')" onmouseout="out_('text4')">Текст №4</td>
		<td width="25"  align="center" id="text5" onmouseover="over_('text5')" onmouseout="out_('text5')">Текст №5</td>
	</tr></table>
</body>
</html>


ВОПРОС: Как сделать так, что бы остался принцип работы onmouseover и onmouseout при добавлении еще на OnClick закрашилась ячейка к примеру в желтый цвет?
Ответить с цитированием