html结构:
<h1>单选表单</h1>
<!-- 同组的单选input标签 必须 带相同的name值以标示是同一组单选框,否则具有'复选'功能-->
<input type="radio" name="test" checked="checked" value="第1项"/> 第1项
<input type="radio" name="test" value="第2项"/>第2项
<input type="radio" name="test" value="第3项"/>第3项
<input type="button" value="51Gg3 搜索"/>
1、设置某项单选input为选中状态:
①可设其属性checked为true
$("input[type='radio']").eq(1).attr('checked',true);
②也可设其属性checked为'checked',设置完后原选中项会自动取消选中
$("input[type='radio']").eq(1).attr('checked','checked');
2、判断某单选框是否被选中状态:
❶ 使用object.attr('checked')==true是错的,应使用object.attr('checked')=='checked'作判断
$("input[type='radio']").eq(1).attr('checked')=='checked';
❷也可使用 is(':checked')方法作判断
$("input[type='radio']").eq(1).is(':checked');
3、获取被选中的单选框:使用 :checked 方法
$("input[type='radio']:checked");
上一篇: 左右飘浮广告(jq方法实现)
下一篇: jquery仿title跟随鼠标提示效果
0条评论( 网友:0 条,站长:0 条 ) 网友评论{有您的评论更精彩....}