案例:javascript案例     状态:可编辑再运行    进入横版
x
 
1
<html>
2
<head>
3
<script type="text/javascript">
4
function setFocus()
5
  {
6
  document.getElementById('check1').focus()
7
  }
8
function loseFocus()
9
  {
10
  document.getElementById('check1').blur()
11
  }
12
</script>
13
</head>
14
<body>
15
16
<form>
17
<input type="checkbox" id="check1" />
18
<br />
19
<input type="button" onclick="setFocus()" value="Set focus" />
20
<input type="button" onclick="loseFocus()" value="Lose focus" />
21
</form>
22
23
</body>
24
</html>

 运行结果 
 北美留学生论坛