search
HomeWeb Front-endJS TutorialLogin registration box mobile phone number and verification code verification implementation code

This article mainly introduces in detail the front-end code of js to implement login registration box mobile phone number and verification code verification. It has certain reference value. Interested friends can refer to it. I hope it can help everyone.

Many development scenarios will use the verification of mobile phone numbers and verification codes. The specific implementation is as follows


<p>
  <input type="text" name="phonenumber" placeholder="请输入您的手机号码" />
  <input type="text" name="verify" placeholder="请输入验证码" /><input type="button" value="发送验证码" class="verify_code" />
  <input type="button" name="btn" placeholder="立即领取" class="btn" />
</p>
<!--弹出层-->
<p class="layer" style="display:none">
    <p>领取成功</p>
    <img  class="close-btn lazy"  src="/static/imghwm/default1.png"  data-src="img/close-btn.png"    alt="Login registration box mobile phone number and verification code verification implementation code" >
</p>


$(document).ready(function(){
//点击关闭按钮关闭弹出层
  $(".close-btn").click(function(){
   $("layer").hide();
  });

//只有再手机号和验证码验证为有效后,点击领取按钮跳出弹出层事件才生效
  $(&#39;[name=btn]&#39;).click(function(){
     if(!validate()){
    return false;
    }
    $(".layer").show();
  });

//验证
function validate(){
//正则表达式,十一位数字的电话号码
  var phoneReg = /^(0|86|17951)?(13[0-9]|15[012356789]|17[0-9]|18[0-9]|14[57])[0-9]{8}$/;
//如果手机号码输入为空,则再输入框后插入错误信息
if($(&#39;[name=phonenumber]&#39;).val==&#39;&#39;){
    $(&#39;[name=phonenumber]&#39;).after(errMsg(&#39;手机号码不能为空!&#39;));
    return false;
  }
//验证输入的电话号码是否是11位数字
if(!phoneReg.test($(&#39;[name=phonenumber]&#39;).val())){
$(&#39;[name=phonenumber]&#39;).after(errMsg(&#39;请输入正确的手机号码!&#39;));
    return false;
}

//验证码不为空验证
if($(&#39;[name=verify]&#39;).val==&#39;&#39;){
    $(&#39;[name=verify]&#39;).after(errMsg(&#39;验证码不能为空!&#39;));
    return false;
}
$(&#39;.error&#39;).remove();
return true;}
//点击发送验证码按钮,进行倒计时
$(&#39;.verify_code&#39;).on(&#39;&#39;,function(){
 if(!this.b){
  setTimer();
  this.b=true;
}
})

//倒计时
function setTimer(){
  var time=60;
  var timers=setInterval(function(){
  time--;
if(time <= 0){
  time=0;
  console.log(time);
  $(&#39;.verify_code&#39;).eq(0)[0].b=false;
  $(&#39;.verify_code&#39;).val(&#39;获取验证码&#39;);
  clearInterval(timers);
return false;
 
}
$(&#39;.verify_code).val( time+ &#39;秒后重新获取&#39;);
},1000)
}


//错误信息显示
function errMsg(html){
  $(&#39;.error&#39;).remove();
  var str=&#39;<p class="error">*&#39;+html+&#39;</p>&#39;;
  return str;
}

});

Related recommendations:

Based on jquery+thickbox imitation school login registration box_jquery

jQuery plug-in to implement static HTML verification code Verification_jquery

jQuery implementation of verification code function example sharing

The above is the detailed content of Login registration box mobile phone number and verification code verification implementation code. For more information, please follow other related articles on the PHP Chinese website!

Statement
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
如何用小红书号查找用户?能查到手机号吗?如何用小红书号查找用户?能查到手机号吗?Mar 22, 2024 am 08:40 AM

随着社交媒体的迅速发展,小红书已经成为了备受青睐的社交平台之一。用户可以通过创建小红书号来展示个人身份,并与其他用户交流互动。如果你需要查找某个用户的小红书号码,可以按照以下简单步骤进行操作。一、如何用小红书号查找用户?1.打开小红书APP,点击右下角的“发现”按钮,然后选择“笔记”选项。2.在笔记列表中,找到你想查找的用户发布的那篇笔记。点击进入笔记详情页。3.在笔记详情页中,点击用户头像下方的“关注”按钮,即可进入该用户的个人主页。4.在用户个人主页右上角,点击三个点按钮,然后选择“个人信息

微信不允许通过手机号添加怎么设置微信不允许通过手机号添加怎么设置Mar 12, 2024 pm 05:04 PM

微信不允许通过手机号添加怎么设置?在微信APP中是可以不允许通过手机号添加微信,但是多数的用户不知道如何设置不允许微信通过手机号,接下来就是小编为用户带来的微信不允许通过手机号添加设置方法教程,感兴趣的用户快来一起看看吧!微信使用教程微信不允许通过手机号添加怎么设置1、首先打开微信APP,进入到主页面点击右下角【我】进入,选择【设置】功能;2、之后进入到设置功能页,找到【朋友权限】服务功能;3、然后在朋友权限界面,滑动【加我为朋友时需要验证】后方的按钮;4、最后在下图所示的页面,滑动【手机号】后

手机号前面的+86是什么意思手机号前面的+86是什么意思Jan 12, 2021 pm 02:17 PM

手机号前面的+86是指中国的国际区号,在国内拨打国内手机,加上“+86”和不加是一样的;而国际电话区号,即国际电信联盟根据“E.164”标准分配给各国的代码;所有的号码都是前缀号,也就是说这些号码是用来“拨到”目的国家。

小红书账号怎么改手机号?账号改手机号有影响吗?小红书账号怎么改手机号?账号改手机号有影响吗?Mar 22, 2024 am 08:11 AM

在数字化时代,小红书已成为许多人分享生活、发现好物的平台。随着时间的推移,我们可能需要更改账号的手机号码。那么,如何更改小红书的手机号呢?一、小红书账号怎么改手机号?1.登录小红书账号,进入“我的”页面。2.点击右上角的“...”,选择“设置”。3.在设置页面,找到“账号与安全”选项,点击进入。4.在账号与安全页面,找到“手机号码”选项,点击进入。5.此时,页面会显示当前手机号码,点击“更换手机号码”。6.输入新的手机号码,接收验证码,并填写。7.设置新的密码,确保账号安全。8.完成上述步骤后,

一个手机号怎么注册两个B站号?B站怎么解除手机绑定呢?一个手机号怎么注册两个B站号?B站怎么解除手机绑定呢?Mar 21, 2024 pm 10:10 PM

B站(哔哩哔哩)作为中国年轻人非常喜欢的视频分享网站,吸引了大量的用户。有些用户希望拥有两个B站账号,以便于分开管理和使用。那么,一个手机号怎么注册两个B站号呢?本文将围绕这一问题以及如何解除手机绑定展开讲解。一、一个手机号怎么注册两个B站号?1.注册新账号:首先,在手机上打开B站App或登录官网,点击“注册”按钮,选择注册方式,可以使用手机号码、邮箱或第三方账号(如微信、QQ等)进行注册。2.注册账号时,请根据系统提示填写必要的信息,包括手机号码、验证码以及设置密码等。务必确保两个账号使用不同

golang中如何验证输入是否为大写字母golang中如何验证输入是否为大写字母Jun 24, 2023 am 09:06 AM

Golang是一门高性能、现代化的编程语言,在日常开发中经常涉及到字符串的处理。其中,验证输入是否为大写字母是一个常见的需求。本文将介绍在Golang中如何验证输入是否为大写字母。方法一:使用unicode包Golang中的unicode包提供了一系列函数来判断字符的编码类型。对于大写字母,其对应的编码范围为65-90(十进制),因此我们可以使用unicod

输入手机号一键查询快递入口网址大全输入手机号一键查询快递入口网址大全Feb 14, 2024 pm 11:33 PM

快递在现在的生活中是必不可少的了,很多的用户基本上每天都会有快递要收,有用户好奇输入手机号一键查询快递入口网址有哪些呢?下面就来看一下小编带来的网址大全吧。输入手机号一键查询快递入口网址大全答案:全国快递随便查网址:https://www.ip138.com/ems/1、快速网:https://www.ickd.cn/2、爱查快递:https://www.ickd.cn/3、邮政:https://www.ems.com.cn/4、京东物流:https://www.jdl.com/5、申通快递:h

铁路12306手机号换了无法验证怎么办铁路12306手机号换了无法验证怎么办Feb 28, 2024 am 09:00 AM

近年来铁路12306的各项认证都已经修改规则,更加规范,之前可能通过他人手机号或者老旧手机号进行买票时,现在在买票则会提示无法认证的操作,影响用户们的出行,那么12306中究竟该如何更换手机号呢,这篇教程攻略就将为大家带来详细的攻略介绍,希望能帮助到各位有需要的小伙伴们。那么首选在自己已经登录上12306app的状态下,我们点击修改手机号功能然后进入到修改页面在点击绑定新手机号,用新手机号发送短信即可然后进入到短信编辑页面,按照提示发送编辑内容将收到的验证码填写进入12306app内即可完成修改

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

Repo: How To Revive Teammates
1 months agoBy尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks agoBy尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
1 months agoBy尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Dreamweaver Mac version

Dreamweaver Mac version

Visual web development tools

VSCode Windows 64-bit Download

VSCode Windows 64-bit Download

A free and powerful IDE editor launched by Microsoft

MinGW - Minimalist GNU for Windows

MinGW - Minimalist GNU for Windows

This project is in the process of being migrated to osdn.net/projects/mingw, you can continue to follow us there. MinGW: A native Windows port of the GNU Compiler Collection (GCC), freely distributable import libraries and header files for building native Windows applications; includes extensions to the MSVC runtime to support C99 functionality. All MinGW software can run on 64-bit Windows platforms.

PhpStorm Mac version

PhpStorm Mac version

The latest (2018.2.1) professional PHP integrated development tool

SAP NetWeaver Server Adapter for Eclipse

SAP NetWeaver Server Adapter for Eclipse

Integrate Eclipse with SAP NetWeaver application server.