我很喜歡javascript。我的問題是如何在點擊時顯示我的單選按鈕的值?如何在點擊時輸出我單選按鈕的值
我有這樣的代碼:
<tr><td width="10px"></td><td width="60%">Neatness</td>
<td width="40%">
<input name="neat" type="radio" class="hover-star" value="1" title="Poor"/>
<input name="neat" type="radio" class="hover-star" value="2" title="Fair"/>
<input name="neat" type="radio" class="hover-star" value="3" title="Satisfactory"/>
<input name="neat" type="radio" class="hover-star" value="4" title="Outstanding"/>
</td></tr>
說,當我第一次單選按鈕,它會顯示1或等等..我怎樣才能做到這一點?或者更好,但沒有人知道如何在jQuery中做到這一點。
你想這樣的:http://jsfiddle.net/rathoreahsan/UpKs5/ –