//得到焦点的时候文本框的颜色会变黄。其它颜色不变 下面是<script/>
function GetOnfocus() {
var txt = document.getElementsByTagName("input");
for (var a = 0; a < txt.length; a++) {
var value = txt[a];
value.onfocus = FocusChange;
}
}
function FocusChange() {
var txt = document.getElementsByTagName("input");
for (var a = 0; a < txt.length; a++) {
var value = txt[a];
if (value == this) {
value.style.background = "yellow";
//这里的this好像就是当前事件发生的对象。但是为什么我只能用value.样式 而不能用this.style 哪位高手指点下
}
else {
value.style.background = "white";
}
}
}