笔记:web页面短信验证功能
在做毕业设计的时候要用到短信验证功能,就整理了一下记在这里; 短信验证平台我使用的是 Bmob.后端云平台 ; 1.js引入 在引入JQuery和Bootstrap的相关js与css文件后; 在去Bomb下载引入短信验证的js < script src = "js/bmob-min.js" > < / script > 2.jsp页面简例 我是要做一个通过短信验证更改密码的功能; 首先输入手机号; 输入要改的新密码; 然后就是拿出手机获取你的验证码输入了; < form role = "form" action = "" > < div class = "form-group" > < label for = "phone" > 您的手机号: < / label > < input type = "text" class = "form-control" name = "phone" id = "phone" / > < / div > < br > < div class = "form-group" > < label for = "password1" > 请输入新密码: < / label > < input type = "text" class = "form-control" name = "password1" id = "password1" / > < /