Jquery select option 및 추가, 제거 option 반복

1532 단어 jqueryjs

//  option   、  option
 function changeShipMethod(shipping){
 var len = $("select[@name=ISHIPTYPE] option").length
 if(shipping.value != "CA"){
 $("select[@name=ISHIPTYPE] option").each(function(){
 if($(this).val() == 111){
 $(this).remove();
 }
 });
 }else{
 $("<option value='111'>UPS Ground</option>").appendTo($("select[@name=ISHIPTYPE]"));
 }
 }
 

//          
 
$(#testSelect option:selected').text();
  $("#testSelect").find('option:selected').text();
  $("#testSelect").val();
 //////////////////////////////////////////////////////////////////
           :
 1,   :
 
var cc1 = $(".formc select[@name='country'] option[@selected]").text(); //             (       )
 var cc2 = $('.formc select[@name="country"]').val(); //            
 var cc3 = $('.formc select[@name="country"]').attr("id"); //           ID   
 $("#select").empty();//     //$("#select").html('');
 $("<option value='1'>1111</option>").appendTo("#select")//      option
 
      :
 1.select[@name='country'] option[@selected]     name   ,
        'country'  select        selected    option   ;
      @             。


좋은 웹페이지 즐겨찾기