我希望当我单击任何字段时,默认文本将被隐藏,当我在其中输入文本并再次单击同一字段时,文本不会被隐藏。
我试过这段代码,但它不起作用
JAVASCRIPT代码:
for(var i = 0; i < inputs.length; i++) {
inputs[i].onfocus = function() {
if(typeof value1 != undefined) {
this.value = value1;
}else {
value = this.value;
this.value = '';
this.style.color = "#000";
}
}
inputs[i].onblur = function() {
if(this.value == '' || this.value == value) {
this.value = value;
this.style.color = "#707070";
}else {
value1 = this.value;
}
}
}
}