<head>
<title>练习</title>
<script type="text/javascript" >
function f1() {
var inputs = document.getElementsByName("input");
for (var i = 0; i < inputs.length; i++) {
var input = inputs;
input.onfocus = f2;
input.onblur = f3;
}
}
function f2() {
this.style.background = "red";
}
function f3() {
this.style.background = "white";
}
</script>
</head>
<body>
<input type="text" /><br />
<input type="text" /><br />
<input type="text" /><br />
<input type="text" /><br />
<input type="text" /><br />
</body>
麻烦给看看哪里错了,新手不大懂
|