首页 > 代码库 > JQuery控制radio选中和不选中方法总结
JQuery控制radio选中和不选中方法总结
一、设置选中方法
代码如下:
$("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="http://www.mamicode.com/0" name="jizai" id="0"/>否 <input type="radio" value="http://www.mamicode.com/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=http://www.mamicode.com/1]").attr("checked",true); }); </script>
您的性别:
代码如下:
<input type="radio" name="sex" value="http://www.mamicode.com/1" <s:if test="user.sex==1">checked</s:if>/>男 <input type="radio" name="sex" value="http://www.mamicode.com/0" <s:if test="user.sex==0">checked</s:if>/>女
四、根据值设置radio选中
代码如下:
$("input[name=‘radio_name‘][value=http://www.mamicode.com/‘要选中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个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。