我有這個JavaScript的下拉菜單,但我不知道如何從中選擇的值。如何選擇一個JavaScript下拉菜單,並把它放在asp.net中的標籤
<select name="slist" >
<script language="javascript">
var states = new Array("Afghanistan", "Albania", "Algeria", "Andorra", "Angola", "Antarctica");
for (var hi = 0; hi < states.length; hi++)
document.write("<option value=\"" + states[hi] + "\">" + states[hi] + "</option>");
document.getSelection(states);
</script>
</select>
我已經使用這個命令嘗試:
document.getElementById("Label1").InnerHTML = states;
,但沒有奏效。如何創建一個函數,讓我在label.text中選定的值? p.s.下拉菜單取自www.hscripts.com
我忘了提及我在更新面板中有這個菜單,因爲我需要一個無閃爍的回發。當我點擊我的提交按鈕時,菜單會丟失它的內容,爲什麼?
你的答案並不支持他.. !! –
@Arnrnath你怎麼能這麼說? –
你見過他的編碼嗎?他說javascript下拉.. !! –