2009-04-13 208 views

回答

63

如果你有HTML,看起來像這樣:

<input type='radio' name='choices' value='1'> 
<input type='radio' name='choices' value='2'> 
<input type='radio' name='choices' value='3'> 
<input type='radio' name='choices' value='4'> 
<input type='radio' name='choices' value='5'> 

你會與此獲得所選擇的無線電值:

$("input:radio[name='choices']:checked").val(); 
+16

$( 「輸入:無線​​電[名= '選擇']:檢查」)VAL();可能會更好地工作。 – 2010-01-29 18:00:02

+1

同意`checked`工作,``selected`不(至少在Firefox 13中,jQuery 1.8) – supervacuo 2012-07-09 20:53:20

7

它將得到單選按鈕的按鍵點擊所選值。 。
EX爲列表

$("#btn").click(function() { 
    $('input[type="radio"]:checked').val(); 
}); 
相關問題