jQuery select 비우기 보존 첫 번째 항목

1465 단어 jQuery

//...  jquery.js

  1:

  var b=$("#a option:first").text();
  $("#a").html('<option>'+b+'</option>');

 
  2:$("#a option:not(:first)").remove();
  //  
  jQuery  Select   Text Value:
    1. var checkText=jQuery("#select_id").find("option:selected").text();   //  Select   Text
    2. var checkValue=jQuery("#select_id").val();   //  Select   option Value
    3. var checkIndex=jQuery("#select_id ").get(0).selectedIndex;   //  Select      
    4. var maxIndex=jQuery("#select_id option:last").attr("index");   //  Select      
  jQuery  /  Select Option :
    1. jQuery("#select_id").append("");   // Select    Option(   )
    2. jQuery("#select_id").prepend("");   // Select    Option(     )
    3. jQuery("#select_id option:last").remove();   //  Select      Option(    )
    4. jQuery("#select_id option[index='0']").remove();   //  Select     0 Option(   )
    5. jQuery("#select_id option[value='3']").remove();   //  Select Value='3' Option
    6. jQuery("#select_id option[text='4']").remove();   //  Select Text='4' Option
      :
    jQuery("#select_id").empty();

좋은 웹페이지 즐겨찾기