>웹 프론트엔드 >JS 튜토리얼 >jquery 获取checkbox,radio,select被选中的值

jquery 获取checkbox,radio,select被选中的值

WBOY
WBOY원래의
2016-06-01 09:54:501114검색

jquery获取radio被选中的值:

<code class="language-html"><input type="radio" name="rd" id="rd1" value="1">1
<input type="radio" name="rd" id="rd2" value="2">2
<input type="radio" name="rd" id="rd3" value="3">3</code>

三种方法都可以:

<code class="language-javascript">$('input:radio:checked').val();
$("input[type='radio']:checked").val();
$("input[name='rd']:checked").val();</code>

 

jquery获取select被选中的值:

<code class="language-html">  <select name="products" id="sel">
    <option value="1">option1</option>
    <option value="2" selected>option2</option>
    <option value="3">option3</option>
    <option value="4">option4</option>
  </select></code>

获取选中项的Value值:

<code class="language-javascript">$('select#sel option:selected').val();
或者
$('select#sel').find('option:selected').val();</code>

获取选中项的Text值:

<code class="language-javascript">$('select#seloption:selected').text();
或者
$('select#sel').find('option:selected').text();</code>

获取当前选中项的索引值:

<code class="language-javascript">$('select#sel').get(0).selectedIndex;</code>

 

jquery获取checkbox被选中的值:

<code class="language-html"><input type="checkbox" name="ck" value="checkbox1">checkbox1     
<input type="checkbox" name="ck" value="checkbox2" checked>checkbox2     
<input type="checkbox" name="ck" value="checkbox3">checkbox3      </code>

获取单个checkbox选中项: 

<code class="language-javascript">$("input:checkbox:checked").val() 
或者 
$("input:[type='checkbox']:checked").val(); 
或者 
$("input:[name='ck']:checked").val(); </code>


获取多个checkbox选中项: 

<code class="language-javascript">$('input:checkbox').each(function() { 
    if ($(this).attr('checked') ==true) { 
        alert($(this).val()); 
    } 
}); </code>

 

성명:
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.