這將得到我的下拉菜單中選擇的值。從下拉框中獲取文本?
document.getElementById('tester').value
但是我不知道下拉菜單中當前顯示的文本的屬性。我嘗試過「文本」,然後看着W3Schools,但沒有答案,這裏有人知道嗎?
對於那些不確定的,這裏是一個下拉框的HTML。
<select name="tester" id="tester">
<option value="1">A skill</option>
<option value="2">Another skill</option>
<option value="3">Yet another skill</option>
</select>
感謝
jQuery的結帳[http://stackoverflow.com/questions/1643227/jquery-get-selected-text-from-下拉列表](http://stackoverflow.com/questions/1643227/jquery-get-selected-text-from-dropdownlist)。對於純粹的JavaScript檢查http://stackoverflow.com/questions/5913/getting-the-text-from-a-drop-down-box。 – cbayram