jqueryで動的に作成された複数のテキストボックス値を取得するにはどうすればよいですか
サンプルコード:
<?php
$i=1;
while($i<10)
{
echo "<input type='textbox' class='qty' id='qty_$id'>";
echo "<input type='textbox' class='item' id='item_$id'>";
$i++;
}
echo '<input class="btn_transaction" id="btn_update" type="button" style="width:auto" value="Update">';
?>
jquery
<script>
jQuery(document).ready(function(e){
$("#btn_update").click(function() {
$.each($('.qty'), function() {
var qty = $(this).val();
alert(qty); // im getting qty here. In the same way i want item also, how to get item value here
jQuery.post('../ajax/ajax_cart.php',{section:'update_tocart',qty:qty},function(data){
});
});
});
});
</script>
前もって感謝します :)