我有這樣的單選按鈕:獲取一個jQuery UI buttonset當前選定的單選按鈕,而不結合點擊
<div id="radio">
<input type="radio" id="radio1" name="radioOption" /><label for="radio1">Choice 1</label>
<input type="radio" id="radio2" name="radioOption" checked="checked" /><label for="radio2">Choice 2</label>
<input type="radio" id="radio3" name="radioOption" /><label for="radio3">Choice 3</label>
</div>
,並應用按鈕設置是這樣的:
$(function() {
$("#radio").buttonset();
});
我需要獲取所選的單選按鈕而不綁定到單擊事件。
您可能會發現此鏈接有用 - http://stackoverflow.com/questions/8329579/jquery-check-current-state-of-radio-button-and-hide- div – 2012-01-18 11:05:44