手机号验证(失去焦点)
Posted lxc127136
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了手机号验证(失去焦点)相关的知识,希望对你有一定的参考价值。
一、html部分
<input id="phone" class="fr n1" type="text" placeholder="卡号/账户名/关系账号" >
<span id="span" class="n1 non" style="margin-left: 22px; font-size: 13px; color: #c7000b;">
卡号/账户名/关系账号输入错误
</span>
二、 css部分
.non{
display: none;
}
三、js部分(重点)
$("#phone").focusout(function() {
var num = ‘000000‘; //我设置的号码为000000 输入其他的都不对
var phone= $("#phone").val();
if(phone != num){
$("#span").removeClass("non");
}else{
$("#span").addClass("non")
}
});
欢迎留言和评论;
以上是关于手机号验证(失去焦点)的主要内容,如果未能解决你的问题,请参考以下文章