x
1
2
<html>
3
<head>
4
<meta charset="utf-8">
5
<title>蜜蜂教程(mifengjc.com)</title>
6
<script>
7
function displayResult(selTag) {
8
var x = selTag.options[selTag.selectedIndex].text;
9
alert("你选择了: " + x);
10
}
11
</script>
12
</head>
13
<body>
14
15
<form>
16
选择你最喜欢的水果:
17
<select onchange="displayResult(this)">
18
<option>Apple</option>
19
<option>Orange</option>
20
<option>Pineapple</option>
21
<option>Banana</option>
22
</select>
23
</form>
24
25
</body>
26
</html>