要獲取選中的 radio 按鈕的值,可以使用 jQuery 中的 :checked 選擇器和 val() 方法。
以下是一個例子:
html
<input type="radio" name="fruit" value="apple" id="appleRadio"> <label for="appleRadio">Apple</label>
<input type="radio" name="fruit" value="banana" id="bananaRadio"> <label for="bananaRadio">Banana</label>
<input type="radio" name="fruit" value="orange" id="orangeRadio"> <label for="orangeRadio">Orange</label>
<button id="submitButton">Submit</button>
js
$(document).ready(function() {
$('#submitButton').click(function() {
const selectedValue = $('input[name="fruit"]:checked').val();
console.log(selectedValue);
});
});
在上面的例子中,當點擊按鈕時,會獲取選中的 radio 按鈕的值,并通過 console.log() 方法輸出。$('input[name="fruit"]:checked') 選擇器用于選中 name 屬性為 "fruit" 且被選中的 radio 按鈕。val() 方法用于獲取選中的 radio 按鈕的值。
注意:如果沒有任何一個 radio 按鈕被選中,$('input[name="fruit"]:checked').val() 返回 undefined。因此在使用前需要先進行判斷是否有選中的 radio 按鈕。