案例:javascript案例     状态:可编辑再运行    进入横版
x
 
1
<html>
2
<head>
3
<script type="text/javascript">
4
function changeText()
5
  {
6
  var x=document.getElementById("mySelect")
7
  x.options[x.selectedIndex].text="Melon"
8
  }
9
</script>
10
</head>
11
<body>
12
13
<form>
14
Select your favorite fruit:
15
<select id="mySelect">
16
  <option>Apple</option>
17
  <option>Orange</option>
18
  <option>Pineapple</option>
19
  <option>Banana</option>
20
</select>
21
<br /><br />
22
<input type="button" onclick="changeText()" value="Set text of selected option">
23
</form>
24

 运行结果 
 北美留学生论坛