2

我是 jquery 的新手,有一个问题....也许你可以帮忙...

<select name="prodName[]" class="select-head" id="prodName0">
  <option value="">Select Product</option>
  <option value="add_prod">Add New</option>
 <-- Here i have db select query --><option value=" "></option></select>

我的jQuery作为

 $(".select-head").live('change',function() { 
      if($(this).val() != "") { 
          $(this).next().val($(this).val()); 
      }
  });
4

2 回答 2

1
 $(".select-head").on('change',function () { 
     var selText = $(this).find('option:selected').text(); //.val() for value
     $('.textarea').val(selText);           
 });
于 2012-08-23T13:43:52.200 回答
0
 $(".select-head").live('change',function () {
       if($(this).val() == "add_prod") { 
          var price=$(this).find('option:selected').attr('role');
          $(this).parent().parent().find('#num').val(price);
       }
  }
于 2012-08-31T08:22:00.250 回答