以下是一些使用jQuery操作radio的技巧:
prop()
方法将radio按钮的checked
属性设置为true
。$('input[name="radioName"]').eq(0).prop('checked', true);
val()
方法获取选中的radio按钮的值。var selectedValue = $('input[name="radioName"]:checked').val();
change()
方法监听radio按钮的改变事件。$('input[name="radioName"]').change(function() {
// 在这里执行操作
});
prop()
方法将radio按钮的disabled
属性设置为true
(禁用)或false
(启用)。$('input[name="radioName"]').eq(0).prop('disabled', true);
input[type="radio"]
获取所有的radio按钮。var radioButtons = $('input[type="radio"]');
val()
方法和选择器选择具有特定值的radio按钮,并将其设置为选中状态。$('input[name="radioName"][value="valueToSelect"]').prop('checked', true);
希望以上技巧能够帮到您!