JQuery控制radio選中和不選中方法總結

來源:互聯網
上載者:User

標籤:strong   put   body   asc   cti   document   style   bsp   總結   

一、設定選中方法

代碼如下:
$("input[name=‘名字‘]").get(0).checked=true; $("input[name=‘名字‘]").attr(‘checked‘,‘true‘);$("input[name=‘名字‘]:eq(0)").attr("checked",‘checked‘); $("input[name=‘radio_name‘][checked]").val();  //擷取被選中Radio的Value值

 

二、設定選中和不選中樣本

代碼如下:
<input type="radio" value="0" name="jizai" id="0"/>否<input type="radio" value="1" name="jizai"  id="1"/>是#jquery中,radio的選中與否是這麼設定的。$("#rdo1").attr("checked","checked");$("#rdo1").removeAttr("checked");

 

通過name

代碼如下:
$("input:radio[name="analyfsftype"]").eq(0).attr("checked",‘checked‘);$("input:radio[name="analyshowtype"]").attr("checked",false);

通過id

代碼如下:
$("#tradeType0").attr("checked","checked");$("#tradeType1").attr("checked",false);

 

三、另一種設定選中方法

 

代碼如下:
<script type="text/javascript">  $(document).ready(function(){          $("input[@type=radio][name=sex][@value=1]").attr("checked",true);  });  </script>  

 

您的性別:  

代碼如下:
<input type="radio" name="sex" value="1" <s:if test="user.sex==1">checked</s:if>/>男  <input type="radio" name="sex" value="0" <s:if test="user.sex==0">checked</s:if>/>女

 

四、根據值設定radio選中 

代碼如下:
$("input[name=‘radio_name‘][value=‘要選中Radio的Value值‘]").attr("checked",true);  //根據Value值設定Radio為選中狀態

 

五、使用prop方法操作樣本

 

代碼如下:
$(‘input‘).removeAttr(‘checked‘); $($(‘#‘+id+‘input‘).eq(0)).prop(‘checked‘,false);$($(‘#‘+id+‘ input‘).eq(0)).prop(‘checked‘,true);

 

JQuery控制radio選中和不選中方法總結

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.