2010-01-05 113 views
0

乾草,我怎麼能得到這個值?即選擇哪一個。jQuery,單選按鈕獲得值

<input type='radio' name="thing" value="on" checked> 
<input type='radio' name="thing" value="off"> 

我不能與

$("input[name='thing']").val() 

感謝

回答

4

如何獲得的價值:

$("input[name='thing']:checked").val() 
+2

釷e @ style在jQuery 1.3中被棄用,並且不會工作,參考:http://docs.jquery.com/Selectors/attributeHas#attribute – tvanfosson 2010-01-05 15:12:43

+0

編輯它...看起來不像作者會改變它。 – James 2010-01-05 15:34:54

+0

thx爲編輯。 – easement 2010-01-06 19:45:39

1

找到解決

$("input[name='thing']:checked").val()