我是代码点火器的新手..所以首先我会让你知道我想要做什么。我有两个选择框和三个简单的文本框连接..所以现在它意味着我有一行五个输入框..第二个下拉的值来自第一个下拉boxe.means如果我从中选择一些东西首先选择框,然后第一个选择的值将出现在第二个下拉列表或选择框中......以及值从数据库中动态出现的方式。确定之后我已经用for循环制作了五行..现在只有第一行的选择框正在工作..而不是其他四行..而且我想要获取用户填充的所有值 这是我的观点
<tr>
<th>Category:</th>
<th>Items:</th>
<th>Selling Price:</th>
<th>quantity:</th>
<th> total:</th>
</tr>
<?php for ($i = 0; $i < 5; $i++) {
?>
<tr>
<td>
<?php echo form_dropdown('cat_id', $records2, '#', 'id="category"');?>
</td>
<td>
<?php echo form_dropdown('item_id', $records3, '#', 'id="items"'); ?>
</td>
<td><?php echo form_input($price); ?> </td>
<td><?php echo form_input($quantity); ?></td>
<td> <?php echo form_input($total); ?>
</td></tr>
<?php }?></table>
我的javascript
$(document).ready(function(){
$('#check').click(function(){
alert("hello");
return false;
});
$('#category').change(function(){
$("#items > option").remove();
var category_id = $('#category').val();
$.ajax({
type: "POST",
url: "stockInController/get_Items/"+category_id,
success: function(items) //we're calling the response json array 'cities'
{
$.each(items,function(item_id,item_name)
{
var opt = $('<option />');
opt.val(item_id);
opt.text(item_name);
$('#items').append(opt);
});
}
});
});
});
我必须给每个选择框一个带有$ i的id,但我不知道怎么能在jquery中做到这一点...记住只有我的第一行成功工作而不是其他四个