html程式碼如下:
<select name="repeat-freq">
<option value="1" selected>每周重复</option>
<option value="2">两周重复</option>
<option value="3">每月重复</option>
</select>
controller中是這樣取選取值的:
$('select[name="repeat-freq"]').val()
結果是,取到的值永遠是“1”,選取option中的其他項依然是1,搞不清為什麼,求解答。
PHP中文网2017-05-15 16:52:19
http://stackoverflow.com/questions/10659097/jquery-get-selected-option-from-dropdown