<li>
<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>
</li>
.error{
clear: both;
color: red;
display: block;
padding-left: 90px;
padding-bottom: 5px;
height: 20px;
line-height: 20px;
float: left;
font-size: 12px;
}
$(function(){
(function login_validate(){
$(".reg-box .account").blur(function(){
reg=/^1[3|4|5|8][0-9]\d{4,8}$/i//验证手机正则
if($(this).val()==" "||$(this).val() == "请输入您的账号"){
$(this).addClass("errorC");/*文本框上加上红色边框*/
$(this).next().html("账号不能为空!");
$(this).next().css("display","block");
}
})
})();
})
其中的error都设置display:block,但是在js中显示信息的时候还设置css的display为block呢?如果是为了设置它显示出来,那一开始不都是display吗
慕少1058987
牛奶老哥哥
相关分类