1:获取选中的$('input:radio:checked').val();
$("input[type='radio']:checked").val();
$("input[name='rd']:checked").val();
2.设置第一个Radio为选中值:$('input:radio:first').attr('checked', 'checked');
或者
$('input:radio:first').attr('checked', 'true');
3.设置最后一个Radio为选中值:$('input:radio:last').attr('checked', 'checked');
或者
$('input:radio:last').attr('checked', 'true');
4.根据索引值设置任意一个radio为选中值:$('input:radio').eq(索引值).attr('checked', 'true');索引值=0,1,2....
或者
$('input:radio').slice(1,2).attr('checked', 'true');
5.根据Value值设置Radio为选中值$("input:radio[value=//www.jb51.net/kf/201110/'rd2']").attr('checked','true');
或者
$("input[value=//www.jb51.net/kf/201110/'rd2']").attr('checked','true');
- THE END -
最后修改:2019年11月5日
非特殊说明,本博所有文章均为博主原创。
如若转载,请注明出处:https://www.95app.top/jquery%e5%af%b9radio%e7%9a%84%e6%93%8d%e4%bd%9c/
共有 0 条评论