如何取得select下拉框的值:1.下拉框的option沒有value屬性時 複製程式碼 程式碼如下: 學號 姓名 年齡 <BR>window.onload = funciton(){ <BR>var param = document.getElementById("param1"); <BR>param.onchange = getParam() { <BR>var text = param.value; <BR>} <BR>} <BR> 2.下拉框的option有value屬性時 複製程式碼 程式碼如下: 學號 姓名 年齡 <BR>window.onload = funciton(){ <BR>var param = document.getElementById("param1"); <BR>param.onchange = getParam(){ <BR>var selectIndex = param.selectIndex; //取得被選項的引索號<BR>var text = param.options[selectIndex].text; <BR>