<label for="">账号</label><input type="text" style="color: #999;" value="请输入您的账号" class="account" maxlength="11" onBlur="textBlur(this)" onFocus="textFocus(this)" />
<span class="error error5"></span>
window.onload=function(){
// 文本框默认文字
function textFocus(el){
if(el.defaultValue == el.value){
el.value == " ";
el.style.color="#333";
}
}
function textBlur(el){
if(el.value == ""){
el.value == el.defaultValue;
el.style.color="#999";
}
}
}
提示错误textFocus没定义
辉光
慕的地6079101
kevinZee
成长前端初学者
相关分类