本帖最后由 丁官林 于 2012-4-18 09:51 编辑  
 
<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> 
大侠们,帮办忙,看看我哪里出错了?{:soso_e183:} |