如何根據單選按鈕選擇做一個簡單的if語句?jQuery單選按鈕if語句
因此,如果單選按鈕英寸顯示,然後顯示div.inchesUser(使用.show) 而釐米相反。
這就是我想要的功能做:
$('div.inchesUser').show(200);
這是我的單選按鈕代碼:
<form id="unitChooser">
<label>Inches or centimetres?</label>
<input class="unitSelectInches" type="radio" name="units" value="inches" />Inches
<input class="unitSelectCenti" checked="checked" type="radio" name="units" value="cms" />Centimetres
</form>
可能重複http://stackoverflow.com/questions/596351/how-can-i-get- which-radio-is-selected-via-jquery) – Barmar