使用 :radio 、 [attribute=value] 选择器
选择器::radio
实例:$(":radio")
结果:选择所有 type="radio" 的 <input> 元素
选择器:[attribute=value]
实例:$("[href='#']")
结果:选择所有 href 属性的值等于 "#" 的元素
两个选择器组合使用
例:
表单中用性别字段
<input name="sex" type="radio" value="1" />男
<input name="sex" type="radio" value="0" />女
实现选中的实例代码:
$(':radio[name=sex][value=0]').attr('checked',true);//选中 女
$(':radio[name=sex][value=1]').attr('checked',true);//选中 男
另可以根据获取的radio对象的遍历对其操作如:
$(':radio[name=sex]').eq(0).attr('checked',true); //选中radio组第1个,本例中结果是选中 男
$(':radio[name=sex]').eq(1).attr('checked',true); //选中radio组第2个,本例中结果是选中 女