案例:HTML DOM案例     状态:可编辑再运行    进入竖版
 运行结果 
x
 
1
<html>
2
<head>
3
<script type="text/javascript">
4
function message()
5
{
6
alert("这个提示框由 onfocus 事件句柄触发")
7
}
8
</script>
9
</head>
10
11
<body>
12
13
<form>
14
请输入您的名字:<input type="text" onfocus="message()" size="20">
15
</form>
16
17
</body>
18
</html>
19