案例:javascript案例     状态:可编辑再运行    进入竖版
 运行结果 
x
 
1
<html>
2
<head>
3
<script type="text/javascript">
4
function setFocus()
5
  {
6
  document.getElementById('select1').focus()
7
  }
8
function loseFocus()
9
  {
10
  document.getElementById('select1').blur()
11
  }
12
</script>
13
</head>
14
<body>
15
16
<form>
17
<select id="select1">
18
  <option>Apple</option>
19
  <option>Pear</option>
20
  <option>Banana</option>
21
  <option>Orange</option>
22
</select>
23
<br /><br />
24
<input type="button" onclick="setFocus()" value="Set focus" />
25
<input type="button" onclick="loseFocus()" value="Lose focus" />
26
</form>
27
28
</body>
29
</html>
30