1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
<html>
<script type="text/javascript">
var selectedValue = '<%= request.getAttribute("line")%>'
function changeSelected(){
jsSelectItemByValue(document.getElementById("mySelect"),selectedValue)
}
function jsSelectItemByValue(objSelect,objItemText) {
for(var i=0i<objSelect.options.lengthi++) {
if(objSelect.options[i].value == objItemText) {
objSelect.options[i].selected = true
break
}
}
}
</script>
<body onload="changeSelected()">
<select id="mySelect" name="mySelect">
<option value="0">0</option>
<option value="1">1</option>
<option value="2">2</option>
<option value="3">3</option>
</select>
</body>
</html>
var selectText = document.getElementById("sect").options[selectIndex].text //获得被选中的项目的文本,即显示值