1
你可以請看看這個在jsFiddle Demo,讓我知道如何啓用單選按鈕的多選,並將結果存儲在數組中使用jQuery?如何啓用多單選按鈕選擇使用jQuery
我想要的是可以選擇一個或多個無線電電信局,並最終將它們存儲在數組中以存儲在數據庫中。我有這樣簡單的HTML表格:
<input type="radio" name="items" value="Item One">Item One</input><br >
<input type="radio" name="items" value="Item Two">Item Two</input><br >
<input type="radio" name="items" value="Item Three">Item Three</input><br >
<input type="radio" name="items" value="Item Four">Item Four</input><br >
<input type="radio" name="items" value="Item Five">Item Five</input><br >
<input type="radio" name="items" value="Item Six">Item Six</input><br >
<br />
<input type='button' value='Display Selected' id='isSelect'>
<p>You Select :</p>
我也是用這個jQuery代碼來存儲所選項目的價值爲您的時間
enter code here
$("#isSelect").click(function() {
var result = $('input:radio[name=items]:checked').val();
$("#sel").html(result);
});
感謝