案例:javascript案例     状态:可编辑再运行    进入竖版
 运行结果 
x
 
1
<html>
2
<head>
3
<script type="text/javascript">
4
function getType()
5
  {
6
  alert(document.getElementById("mySelect").type)
7
  }
8
</script>
9
</head>
10
<body>
11
12
<form>
13
<select id="mySelect">
14
  <option>Apple</option>
15
  <option>Pear</option>
16
  <option>Banana</option>
17
  <option>Orange</option>
18
</select>
19
<input type="button" onclick="getType()" value="Alert type of dropdown list">
20
</form>
21
22
</body>
23
</html>
24