>  기사  >  웹 프론트엔드  >  jquery 如何设置单选框的第一个或最后一个radio为选中值

jquery 如何设置单选框的第一个或最后一个radio为选中值

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

本实例需要使用到的html代码: 

<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>

设置第一个Radio为选中值: 

<code class="language-javascript">$('input:radio:first').attr('checked', 'checked'); 
或者 
$('input:radio:first').attr('checked', 'true'); </code>

 

设置最后一个Radio为选中值: 

<code class="language-javascript">$('input:radio:last').attr('checked', 'checked'); 
或者 
$('input:radio:last').attr('checked', 'true'); </code>

注: attr("checked",'checked')= attr("checked", 'true')= attr("checked", true) 

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