以下是一些使用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);
希望以上技巧能夠幫到您!