获取inputtype=radio属性的value值
个⼈代码1:
<div class="form-group" >
<label for="">性别</label>
属于input属性
<input type="radio" id="driverSex" name="driverSex" value="男"/>男
<input type="radio" id="driverSex" name="driverSex" value="⼥"/>⼥
</div>
注意: 1.value属性不要写错,写错或没写会获取的值默认是on
2.name 属性必须⼀致
个⼈代码2:
//编辑
function editdriver(id) {
$.ajax({
url:"${tPath}/upadatedriver",
type:"GET",
data:{"id":id},
success:function(result){
console.log(result);
$("input[name=driverSex]").val([result.driverSex]);//回显性别
}
});
$("#driver").modal("show");//打开模态框
}
其他参考:
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');
注:attr("checked",'checked')= attr("checked", 'true')= 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,

版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。