Показать сообщение отдельно
  #10 (permalink)  
Старый 17.07.2014, 12:40
Профессор
Отправить личное сообщение для skrudjmakdak Посмотреть профиль Найти все сообщения от skrudjmakdak
 
Регистрация: 27.04.2012
Сообщений: 1,410

не много не верно выразился, можно было додуматься:
<html>
	<head>
		<title>example</title>
	</head>
	<body>
		<div style="width: 200px; height: 200px; background-color: red;">
			<div style="width: 150px; height: 150px; background-color: yellow;">
				<div style="width: 100px; height: 100px; background-color: green;"></div>
			</div>
		</div>
		<script src="http://code.jquery.com/jquery-1.10.2.js"></script>
		<!--<script src="http://code.jquery.com/ui/1.11.0/jquery-ui.js"></script>
		<link rel="stylesheet" href="http://code.jquery.com/ui/1.11.0/themes/smoothness/jquery-ui.css">-->
		<script>
/*$(document).click(function(e)
	{
	console.log(e.target);
	});*/
$('div').click(function ()
	{
	console.log(this);//сразу 3 клика при клике в верхнему элементу
	});
		</script>
	</body>
</html>
Ответить с цитированием