0

我的视图页面中有一个表单,其中连续有两个选择框和三个输入框。我将它们放在一个 for 循环中并制作五行,其中每行有两个选择框和 3 个简单文本框。我写jquery中的一个函数,如果我从一个选择框中选择值,它将出现在第二个选择框中。但是在循环中制作五行之后,此函数仅在第一行而不是其他四行中工作。我不知道该怎么做。如果有人可以为我编码,那么感谢他...

这是我的查看页面

   <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);
            });
        }

    });

 });
  });

用于向控制器发送值的JavaScript

    <script type="text/javascript">
       $('#btn').click(function() { //  $("#form").serialize()

var cust_id = $('#cust_id').val();
var item_id = $('#items').val();


var sales_date = $('#sales_date').val();
var sales_bill_no = $('#sales_bill_no').val();
var price = $('#price').val();
var quantity = $('#quantity').val();




var form_data = {
        cust_id: $('#cust_id').val(),
        sales_date: $('#sales_date').val(),
        sales_bill_no: $('#sales_bill_no').val(),
        price: $('#price').val(),
        quantity: $('#quantity').val(),
        item_id: $('#items').val(),




};


$.ajax({
    url: "<?php echo site_url('salesController/addSales'); ?>",
    type: 'POST',
    data: form_data,
    dataType: 'json',
    success: function(msg) {
        if(msg.res == 1)
        {
            $(".success").fadeIn(500).delay(2000).fadeOut(500);
            alert("true");
        }
        else{
            alert("false");          
          }


    }
});

return false;
   });


  </script>

我已经这样做了,但这不起作用

 <?php echo form_dropdown('cat_id', $records2, '#', "id='category_".$i."'");?>

  <?php echo form_dropdown('item_id', $records3, '#', "id='items_".$i."'"); ?>



        <script type="text/javascript">// <![CDATA[
$(document).ready(function()
    {  
     for (var i= 0; i<5; i++)
          {
    $('#category_'+ i).change(function(){




        $('#items_'+ i > option").remove(); 
        var category_id = $('#category_'+ i).val(); 
        $.ajax({
            type: "POST",
            url: "stockInController/get_Items/"+category_id, 

            success: function(items)
            {
                $.each(items,function(item_id,item_name) 
                {
                    var opt = $('<option />'); 
                    opt.val(item_id);
                    opt.text(item_name);
                    $('#items_'+ i).append(opt); 
                });
            }

        });

    });
}

    });
4

2 回答 2

0

我认为这里的问题是,在每一行中,您必须输入具有 ID 的“类别”和“项目”的输入。页面上的每个元素都应该有一个唯一的 ID。也许对于第 1 行,它们是“cat_1”和“item_1”或类似的东西。现在有点像你有一个有 10 个人的房间,其中 5 个人叫 Johnny,5 个人叫 Sarah。如果你走进去问约翰尼,你会遇到问题。

于 2013-01-18T10:38:51.770 回答
0
<?php for ($i = 0; $i < 5; $i++) {
?>
<tr>
       <td>     


<?php echo form_dropdown('cat_id', $records2, '#', "id='category".$i."'");?>
</td>

<?php echo form_dropdown('item_id', $records3, '#', "id='items".$i."'"); ?>

 </td>           

同样,在您的 javascript 中运行一个循环并获取类别和项目的值

编辑:

for(i=0;i < 5; i++){
$("#category"+i).change(function(){ 
$("#items"+i+" > option").remove();
var category_id = $("#category"+i).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"+i).append(opt);
        });
    }

});
}
于 2013-01-18T10:39:34.050 回答