Сообщение от angel__2003
|
необходимо выяснить значение всех INPUTов
|
Как вариант...
<!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 () {
$('#container > div').each(function (){
var str;
str=$(this).find('[name="city"]').val();
str=str+', '+$(this).find('[name="street"]').val();
str=str+', '+$(this).find('[name="house"]').val();
alert(str);
});
});
</script>
</head>
<body>
<div id='container'>
<div name='object'>
<input name='city' value='1' />
<input name='street' value='11' />
<input name='house' value='111' />
</div>
<div name='object'>
<input name='city' value='2' />
<input name='street' value='22' />
<input name='house' value='222' />
</div>
<div name='object'>
<input name='city' value='3' />
<input name='street' value=33' />
<input name='house' value='333' />
</div>
</div>
</body>
</html>