Сообщение от faforty
|
при нажатии на span выдавало в alert значение index="0"
...
чтобы все действия происходили из дива div id="sec"
|
Как вариант...
<!DOCTYPE html>
<html>
<head>
<script src="http://code.jquery.com/jquery-latest.js"></script>
<!--
<link rel="stylesheet" type="text/css" href="tmp.css" />
-->
<style type="text/css">
</style>
<script type="text/javascript">
$(document).ready(function (){
$('#sec span').click(function (){
alert($(this).attr('index'))
})
})
</script>
</head>
<body>
<div id="sec">
<span index="0">Что-то</span>
<span index="1">Что-то</span>
<span index="2">Что-то</span>
</div>
<div id="sec2">
<span index="0">Что-то</span>
<span index="1">Что-то</span>
<span index="2">Что-то</span>
</div>
</body>
</html>