jQuery 는 select 드 롭 다운 상 자 를 실현 하여 현재 선택 한 텍스트,값,색인 을 가 져 옵 니 다.

4274 단어 select뽑다
말 이 많 지 않 으 니 코드 를 보십시오.

//      .htnl        ,    
<head>
<script src="http://libs.baidu.com/jquery/2.0.0/jquery.min.js"></script>
<script>
 $(function(){
  // Select    ,          
  $("select:eq(0)").change(function(){
   //code
  });
  //  Select   Text:                        
  var checkText = $("select:eq(0) :selected").text();//       
     = $("select:eq(0) option:selected").tetx();
     = $("#One").find(":selected").text();
     = $("#One").find("option:selected").text();

 //    ,       ,       。
  var checkValue = $("#select_id").val();
 //  Select          , [      ]          val  
  var checkValue = $("select:eq(0) :selected").val();//=========       ,    

  //  Select      
  var checkIndex = $("#select_id ").get(0).selectedIndex; 
  //  Select       
  var maxIndex = $("#select_id :last").prop("index"); //     
     = $("#select_id option:last").prop("index"); 
     = $("select:eq(0)").find(":last").prop("index")
     = $("select:eq(0)").find("option:last").prop("index")

 //=========================================================================================
 //jQuery  Select    Text Value:
 //   Select Value  4    
 $("#select_id ").val(4); //    
 $("#select_id [value='4']").prop("selected", true);
 $("#select_id option[value='4']").prop("selected", true);
 //  select     option   
 $("select :first").prop("selected", true);//  
 $("select :first").prop("selected", 'selected'); 
 $("select option:first").prop("selected", "true"); 
 $("select option:first").prop("selected", "selected"); 

 //============================================================================================
 //jQuery  /  Select Option 
 $("#select_id").append("<option value='Value'>Text</option>"); // Select      Option(   )
 $("#select_id").prepend("<option value='0'>   </option>"); // Select      Option(     )
 $("#select_id :last").remove(); //  Select      Option(    )
 $("#select_id :fist").remove(); //  Select       0Option(   )
 $("#select_id [value='3']").remove(); //  Select Value='3' Option

 });
 </script>
</head>
<table>
 <tr>
   <td>
    <!--multiple         ,size            ,-->
    <select size="12" id="One" multiple="multiple">
     <option value='1'>  </option>
     <option value="2">  </option>
     <option value="3">  </option>
     <option value="4">  </option>
    </select>
   </td>
   <td>
     <input type="button" value=">>>"><br>
     <input type="button" value="&nbsp;>&nbsp;"><br>
     <input type="button" value="&nbsp;<&nbsp;"><br>
     <input type="button" value="<<<"><br>

   </td>
   <td>
     <select size="12" id="two" multiple="multiple">
      <option value="5">  </option>
     </select>

   </td>
   <td>
     <input type="button" value="&nbsp;up&nbsp;"><br><br>
     <input type="button" value="down"><br>
   </td>
 </tr>
</table>
이상 은 본 고의 모든 내용 입 니 다.본 고의 내용 이 여러분 의 학습 이나 업무 에 어느 정도 도움 이 되 기 를 바 랍 니 다.또한 저 희 를 많이 지지 해 주시 기 바 랍 니 다!

좋은 웹페이지 즐겨찾기