案例:html/html5 案例     状态:可编辑再运行    进入竖版
 运行结果 
x
 
1
<!DOCTYPE html>
2
<html>
3
<head>
4
<script>
5
function setStyle(x)
6
{
7
document.getElementById(x).style.background="yellow";
8
}
9
</script>
10
</head>
11
<body>
12
13
<p>当输入字段获得焦点时触发函数。此函数改变输入字段的背景色。</p>
14
15
First name: <input type="text" id="fname" onfocus="setStyle(this.id)"><br>
16
Last name: <input type="text" id="lname" onfocus="setStyle(this.id)">
17
18
</body>
19
</html>
20