2012-04-29 103 views
0

我有一個選擇菜單下面的代碼:獲取所選項目的字符串值中選擇菜單

<label for="select-choice-0" class="select">Shipping method:</label> 
<select name="select-choice-0" id="select-choice-1"> 
    <option value="standard">Standard: 7 day</option> 
    <option value="rush" >Rush: 3 days</option> 
    <option value="express">Express: next day</option> 
    <option value="overnight">Overnight</option> 
</select> 

做$(「選擇選-1」)VAL()會給我的價值例如,如果已經選擇了第二選項,則返回的值將是「倉促的」。

但是我想要取得字符串「Rush:3天」。我怎樣才能做到這一點?

謝謝。

回答

0

找到了以下工作:

document.getElementById('select-choice-1').options[document.getElementById('select-choice-1').options.selectedIndex].text; 
相關問題