写了一个简单的php+jquery注册模块,需要填写的栏目包括用户名、邮箱、密码、重复密码和验证码,其中每个栏目需要具备的功能和要求如下图:
在做这个模块的时候,很大程度上借鉴了网易注册(/d/file/titlepic/regInitialized keydown )都统一设置为将焦点移至下一个栏目,除了最后一个栏目验证码,在验证码栏目使用回车( keydown )会触发提交事件。
功能分析
用户名栏目:
流程
①页面加载完即获得焦点,获得焦点时出现初始说明文字;
②鼠标点击用户名输入框,出现初始说明文字;
③输入字符,即时提示是否符合长度要求;
④失去焦点时首先判断是否为空,为空时提示不能为空;非空且长度满足要求时,开始检测用户名是否被注册;
⑤用户名已被注册,给出提示,如果没有注册,则提示可以注册;
⑥再次获得焦点时,不论输入框中是否有输入,或是否输入符合规定,都出现初始说明文字
⑦回车时将焦点移至邮箱栏目
如图:
细节
可以使用任意字符,并且字数限制为:中文长度不超过7个汉字,英文、数字或符号长度不超过14个字母、数字或符号(类似豆瓣注册https://www.douban.com/accounts/register),即不超过14个字符
关于占位符(字符长度),一个汉字的占位符是2,一个英文(数字)的占位符是1,可以用php语句来计算字符的长度
<?php//php.ini开启了php_mbstring.dll扩展 $str="博客园小dee"; echo (strlen($str)+mb_strlen($str,'utf-8'))/2;
输出:11
而strlen($str) 输出的是15:4*3+3,汉字在utf-8编码下占3个字节,英文占1个,
mb_strlen($str,’utf-8′) 输出的是7:一个汉字的长度是1,
如果用jquery的length来输出这个字符串,alert($(“#uname”).val().length),则会得到长度7,
这点要注意。
同时用户名两端不能含有空格,在检测以及注册时,程序会自动过滤用户名两端的空格。
register.html 用户名栏目的html代码片段:
<!-- 用户名 --> <div class="ipt fipt"> <input type="text" name="uname" id="uname" value="" placeholder="输入用户名" autocomplete="off" /> <!--提示文字--> <span id="unamechk"></span></div>
register.js公用部分的js代码:
$(function(){ //说明文字 function notice(showmsg,noticemsg){ showmsg.html(noticemsg).attr("class","notice"); } //显示错误信息 function error(showmsg,errormsg){ showmsg.html(errormsg).attr("class","error"); } //显示正确信息 function success(showmsg,successmsg){ showmsg.html(successmsg) .css("height","20px") .attr("class","success"); } //计算字符长度 function countlen(value){ var len = 0; for (var i = 0; i < value.length; i++) { if (value[i].match(/[^\x00-\xff]/ig) != null) len += 2; el len += 1; } return len; } //......)};
register.js用户名部分的js代码:
//检测用户名长度function unamelen(value){ var showmsg = $("#unamechk"); /* (strlen($str)+mb_strlen($str))/2 可得出限制字符长度的上限, * 例如:$str为7个汉字:"博客园记录生活",利用上面的语句可得出14, * 同样,14个英文,利用上面的语句同样能得出字符长度为14 */ if(countlen(value) > 14){ var errormsg = '用户名长度不能超过14个英文或7个汉字'; error(showmsg,errormsg); }el if(countlen(value) == 0){ var noticemsg = '用户名不能为空'; notice(showmsg,noticemsg); }el{ var successmsg = '长度符合要求'; success(showmsg,successmsg); } return countlen(value); } //用户名 unamelen($("#uname").val()); $("#uname").focus(function(){ var noticemsg = '中英文均可,最长为14个英文或7个汉字'; notice($("#unamechk"),noticemsg); }) .click(function(){ var noticemsg = '中英文均可,最长为14个英文或7个汉字'; notice($("#unamechk"),noticemsg); }) .keyup(function(){ unamelen(this.value); }).keydown(function(){ //把焦点移至邮箱栏目 if(event.keycode == 13){ $("#uemail").focus(); } }) .blur(function(){ if($("#uname").val()!="" && unamelen(this.value)<=14 && unamelen(this.value)>0){ //检测中 $("#unamechk").html("检测中...").attr("class","loading"); //ajax查询用户名是否被注册 $.post("./../chkname.php",{ //要传递的数据 uname : $("#uname").val() },function(data,textstatus){ if(data == 0){ var successmsg = '恭喜,该用户名可以注册'; $("#unamechk").html(successmsg).attr("class","success"); //设置参数 nameval = true; }el if(data == 1){ var errormsg = '该用户名已被注册'; error($("#unamechk"),errormsg); }el{ var errormsg = '查询出错,请联系网站管理员'; error($("#unamechk"),errormsg); } }); }el if(unamelen(this.value)>14){ var errormsg = '用户名长度不能超过14个英文或7个汉字'; error($("#unamechk"),errormsg); }el{ var errormsg = '用户名不能为空'; error($("#unamechk"),errormsg); }});//加载后即获得焦点$("#uname").focus();
checkname.php代码:
<?php header("chart=utf-8"); require_once("conn/conn.php"); if(ist($_post['uname']) && $_post['uname']!=""){ $uname = trim(addslashes($_post['uname'])); } $sql = "lect uname from ur where uname='".$uname."'"; if($conne->getrowsnum($sql) == 1){ $state = 1; }el if($conne->getrowsnum($sql) == 0){ $state = 0; }el{ echo $conne->msg_error(); } echo $state;
提示文字( chrome下 )
①初始获得焦点、再次获得焦点或点击时
②输入时实时检测长度
③删除至空且未失去焦点时,使用蓝色图标提示不能为空——用户在输入时看起来不突兀
④失去焦点且不为空,检测是否被注册( 非常短暂,一闪而过 )
⑤失去焦点时为空、可以注册、已被注册时
用户名分析至此完毕。
邮箱栏目:
流程
①当栏目获得焦点或者点击时不论栏目为空、填写正确或者填写错误时都出现说明文字;
②用户输入时出现下拉菜单显示多种邮件后缀供用户选择;
③失去焦点时首先判断邮箱格式是否正确,如果正确则检测邮箱是否被注册 ;
④在使用回车选择下拉菜单时,将自动填充邮箱栏目;没有出现下拉菜单时,将焦点移至密码栏目
如图:
register.html邮箱栏目html代码片段:
<!-- email --> <div class="ipt"> <input type="text" name="uemail" id="uemail" value="" placeholder="常用邮箱地址" /> <span id="uemailchk"></span> <ul class="autoul"></ul> </div>
下拉功能emailup.js同之前的博文《jquery实现下拉提示且自动填充的邮箱》,略有修改,注意用回车( keydown和keyup事件)在不同情况下触发的不同动作:
$(function(){//初始化邮箱列表var mail = new array("sina.com","126.com","163.com","gmail.com","qq.com","hotmail.com","sohu.com","139.com","189.cn","sina.cn");//把邮箱列表加入下拉for(var i=0;i<mail.length;i++){var $lielement = $("<li class=\"autoli\"><span class=\"ex\"></span><span class=\"at\">@社区计生工作总结</span><span class=\"step\">"+mail[i]+"</span></li>");$lielement.appendto("ul.autoul");}//下拉菜单初始隐藏借条范本$(".autoul").hide();//在邮箱输入框输入字符$("#uemail").keyup(function(){if(event.keycode!=38 && event.keycode!=40 && event.keycode!=13){//菜单展现,需要排除空格开头和"@"开头if( $.trim($(this).val())!="" && $.trim(this.value).match(/^@/)==null ) {$(".autoul").show();//修改$(".autoul li").show();//同时去掉原先的高亮,把第一条提示高亮if($(".autoul li.lihover").hasclass("lihover")) {$(".autoul li.lihover").removeclass("lihover");}$(".autoul li:visible:eq(0)").addclass("lihover");}el{//如果为空或者"@"开头$(".autoul").hide();$(".autoul li:eq(0)").removeclass("lihover");}//把输入的字符填充进提示,有两种情况:1.出现"@"之前,把"@"之前的字符进行填充;2.出现第一次"@"时以及"@"之后还有字符时,不填充//出现@之前if($.trim(this.value).match(/[^@]@/)==null){//输入了不含"@"的字符或者"@"开头if($.trim(this.value).match(/^@/)==null){//不以"@"开头//这里要根据实际html情况进行修改$(this).siblings("ul").children("li").children(".ex").text($(this).val());}}el{//输入字符后,第一次出现了不在首位的"@"//当首次出现@之后,有2种情况:1.继续输入;2.没有继续输入//当继续输入时var str = this.value;//输入的所有字符var strs = new array();strs = str.split("@");//输入的所有字符以"@"分隔$(".ex").text(strs[0]);//"@"之前输入的内容var len = strs[0].length;//"@"之前输入内容的长度if(this.value.length>len+1){//截取出@之后的字符串,@之前字符串的长度加@的长度,从第(len+1)位开始截取var strright = str.substr(len+1);//正则屏蔽匹配反斜杠"\"if(strright.match(/[\\]/)!=null){strright.replace(/[\\]/,"");return fal;}//遍历li$("ul.autoul li").each(function(){//遍历span//$(this) li$(this).children("span.step").each(function(){//@之后的字符串与邮件后缀进行比较//当输入的字符和下拉中邮件后缀匹配并且出现在第一位出现//$(this) span.stepif($("ul.autoul li").children("span.step").text().match(strright)!=null && $(this).text().indexof(strright)==0){//class showli是输入框@后的字符和邮件列表对比匹配后给匹配的邮件li加上的属性$(this).parent().addclass("showli");//如果输入的字符和提示菜单完全匹配,则去掉高亮和showli,同时提示隐藏if(strright.length>=$(this).text().length){$(this).parent().removeclass("showli").removeclass("lihover").hide();}}el{$(this).parent().removeclass("showli");}if($(this).parent().hasclass("showli")){$(this).parent().show();$(this).parent("li").parent("ul").children("li.showli:eq(0)").addclass("lihover");}el{$(this).parent().hide();$(this).parent().removeclass("lihover");}});});//修改if(!$(".autoul").children("li").hasclass("showli")){$(".autoul").hide();}}el{//"@"后没有继续输入时$(".autoul").children().show();$("ul.autoul li").removeclass("showli");$("ul.autoul li.lihover").removeclass("lihover");$("ul.autoul li:eq(0)").addclass("lihover");}}}//有效输入按键事件结束if(event.keycode == 8 || event.keycode == 46){$(this).next().children().removeclass("lihover");$(this).next().children("li:visible:eq(0)").addclass("lihover");}//删除事件结束 if(event.keycode == 38){//使光标始终在输入框文字右边$(this).val($(this).val());}//方向键↑结束if(event.keycode == 13){//keyup时只做菜单收起相关的动作和去掉lihover类的动作,不涉及焦点转移$(".autoul").hide();$(".autoul").children().hide();$(".autoul").children().removeclass("lihover"); }}); $("#uemail").keydown(function(){if(event.keycode == 40){//当键盘按下↓时,如果已经有li处于被选中的状态,则去掉状态,并把样式赋给下一条(可见的)liif ($("ul.autoul li").is(".lihover")) {//如果还存在下一条(可见的)li的话if ($("ul.autoul li.lihover").nextall().is("li:visible")) {if ($("ul.autoul li.lihover").nextall().hasclass("showli")) {$("ul.autoul li.lihover").removeclass("lihover").nextall(".showli:eq(0)").addclass("lihover");} el {$("ul.autoul li.lihover").removeclass("lihover").removeclass("showli").next("li:visible").addclass("lihover");$("ul.autoul").children().show();}} el {$("ul.autoul li.lihover").removeclass("lihover");$("ul.autoul li:visible:eq(0)").addclass("lihover");}} }if(event.keycode == 38){//当键盘按下↓时,如果已经有li处于被选中的状态,则去掉状态,并把样式赋给下一条(可见的)liif($("ul.autoul li").is(".lihover")){//如果还存在上一条(可见的)li的话if($("ul.autoul li.lihover").prevall().is("li:visible")){if($("ul.autoul li.lihover").prevall().hasclass("showli")){$("ul.autoul li.lihover").removeclass("lihover").prevall(".showli:eq(0)").addclass("lihover");}el{$("ul.autoul li.lihover").removeclass("lihover").removeclass("showli").prev("li:visible").addclass("lihover");$("ul.autoul").children().show();}}el{$("ul.autoul li.lihover").removeclass("lihover");$("ul.autoul li:visible:eq("+($("ul.autoul li:visible").length-1)+")").addclass("lihover");}}el{//当键盘按下↓时,如果之前没有一条li被选中的话,则第一条(可见的)li被选中$("ul.autoul li:visible:eq("+($("ul.autoul li:visible").length-1)+")").addclass("lihover");}} if(event.keycode == 13){ //keydown时完成的两个动作 ①填充 ②判断下拉菜单是否存在,如果不存在则焦点移至密码栏目。注意下拉菜单的收起动作放在keyup事件中。即当从下拉菜单中选择邮箱的时候按回车不会触发焦点转移,而选择完毕菜单收起之后再按回车,才会触发焦点转移事件if($("ul.autoul li").is(".lihover")) {$("#uemail").val($("ul.autoul li.lihover").children(".ex").text() + "@" + $("ul.autoul li.lihover").children(".step").text());}//把焦点移至密码栏目if($(".autoul").attr("style") == "display: none;"){$("#upwd").focus();}}});//把click事件修改为moudown,避免click事件时短暂的失去焦点而触发blur事件$(".autoli").moudown(function(){$("#uemail").val($(this).children(".ex").text()+$(this).children(".at").text()+$(this).children(".step").text());$(".autoul").hide();//修改$("#uemail").focus();}).hover(function(){if($("ul.autoul li").hasclass("lihover")){$("ul.autoul li").removeclass("lihover");}$(this).addclass("lihover");});$("body").click(function(){$(".autoul").hide();});});
register.js邮箱代码片段:
//邮箱下拉js单独引用emailup.js$("#uemail").focus(function(){var noticemsg = '用来登陆网站,接收到激活邮件才能完成注册';notice($("#uemailchk"),noticemsg);}).click(function(){var noticemsg = '用来登陆网站,接收到激活邮件才能完成注册';notice($("#uemailchk"),noticemsg);}).blur(function(){if(this.value!="" && this.value.match(/^[\w-]+(\.[\w-]+)*@[\w-]+(\.[\w-]+)+$/)!=null){//检测是否被注册$("#uemailchk").html("检测中...").attr("class","loading");//ajax查询用户名是否被注册$.post("./../chkemail.php",{//要传递的数据uemail : $("#uemail").val()},function(data,textstatus){if(data == 0){var successmsg = '恭喜,该邮箱可以注册';$("#uemailchk").html(successmsg).attr("class","success");emailval = true;}el if(data == 1){var errormsg = '该邮箱已被注册';error($("#uemailchk"),errormsg);}el{var errormsg = '查询出错,请联系网站管理员';error($("#uemailchk"),errormsg);}});}el if(this.value == ""){var errormsg = '邮箱不能为空';error($("#uemailchk"),errormsg);}el{var errormsg = '请填写正确的邮箱地址';$("#uemailchk").html(errormsg).attr("class","error");}});
提示文字( chrome下 )
①获得焦点时、点击时
②输入时
③失去焦点为空、格式错误、已被注册、可以注册时分别为
邮箱功能至此结束。
密码栏目:
要求
①6-16个个字符,区分大小写(参考豆瓣和网易)
②密码不能为同一字符
③实时提示是否符合要求以及判断并显示密码强度,:
1.输入时如果为空(删除时)则用蓝色符号提示不能为空,超过长度时用红色符号
2.密码满足长度但是为相同字符的组合时:密码太简单,请尝试数字、字母和下划线的组合
3.密码强度判断有多种规则,有直接依据长度和组合规则作出判断,也有给每种长度和组合设置分数,通过验证实际密码的情况计算出最后分数来判断强弱。在这个模块中采用比较简单的一种形式,也是网易注册采用的方法:
密码满足长度且全部为不同字母、全部为不同数字或全部为不同符号时为弱:弱:试试字母、数字、符号混搭
密码满足长度且为数字、字母和符号任意两种组合时为中
密码满足长度且为数字、字母和符号三种组合时为强
④输入时大写提示
如图:
register.html密码栏目html代码片段:
<div class="ipt"><input type="password" name="upwd" id="upwd" value="" placeholder="设置密码" /><div class="upwdpic"><span id="upwdchk"></span><img id="pictie" /></div></div>
register.js密码代码片段:
function noticeeasy(){//密码全部为相同字符或者为123456,用于keyup时的noticevar noticemsg = '密码太简单,请尝试数字、字母和下划线的组合';return notice($("#upwdchk"),noticemsg);}function erroreasy(){//密码全部为相同字符或者为123456,用于blur时的errorvar errormsg = '密码太简单,请尝试数字、字母和下划线的组合';return error($("#upwdchk"),errormsg);}//检测密码长度函数//检测密码长度function upwdlen(value,func){var showmsg = $("#upwdchk");if(countlen(value) > 16){var errormsg = '密码不能超过16个字符';error(showmsg,errormsg);$("#pictie").hide();}el if(countlen(value) < 6){//使用notice更加友好var noticemsg = '密码不能少于6个字符';notice(showmsg,noticemsg);$("#pictie").hide();}el if(countlen(value) == 0){//使用notice更加友好var noticemsg = '密码不能为空';notice(showmsg,noticemsg);$("#pictie").hide();}el{upwdstrong(value,func);//如果长度不成问题,则调用检测密码强弱}return countlen(value);//返回字符长度}//检测密码强弱function upwdstrong(value,func){var showmsg = $("#upwdchk");if(value.match(/^(.)\1*$/)!=null || value.match(/^123456$/)){//密码全部为相同字符或者为123456,调用函数noticeeasy或erroreasyfunc;}el if(value.match(/^[a-za-z]+$/)!=null || value.match(/^\d+$/)!=null || value.match(/^[^a-za-z0-9]+$/)!=null){//全部为相同类型的字符为弱var successmsg = '弱:试试字母、数字、符号混搭';success(showmsg,successmsg);//插入强弱条$("#pictie").show().attr("src","images/weak.jpg");pwdval = true;}el if(value.match(/^[^a-za-z]+$/)!=null || value.match(/^[^0-9]+$/)!=null || value.match(/^[a-za-z0-9]+$/)!=null){//任意两种不同类型字符组合为中强( 数字+符号,字母+符号,数字+字母 )var successmsg = '中强:试试字母、数字、符号混搭';success(showmsg,successmsg);$("#pictie").show().attr("src","images/normal.jpg");pwdval = true;}el{//数字、字母和符号混合var successmsg = '强:请牢记您的密码';success(showmsg,successmsg);$("#pictie").show().attr("src","images/strong.jpg");pwdval = true;}}$upper = $("<div id=\"upper\">大写锁定已打开</div>");$("#upwd").focus(function(){var noticemsg = '6到16个字符,区分大小写';notice($("#upwdchk"),noticemsg);$("#pictie").hide();}).click(function(){var noticemsg = '6到16个字符,区分大小写';notice($("#upwdchk"),noticemsg);$("#pictie").hide();}).keydown(function(){//把焦点移至邮箱栏目if(event.keycode == 13){$("#rupwd").focus();}}).keyup(function(){//判断大写是否开启//输入密码的长度var len = this.value.length; if(len!=0){//当输入的最新以为含有大写字母时说明开启了大写锁定if(this.value[len-1].match(/[a-z]/)!=null){//给出提示$upper.inrtafter($(".upwdpic"));}el{//移除提示$upper.remove();}}el{//当密码框为空时移除提示if($upper){$upper.remove();}}//判断大写开启结束//判断长度及强弱upwdlen(this.value,noticeeasy()); })//keyup事件结束.blur(function(){upwdlen(this.value,erroreasy());//upwdlen函数中部分提示使用notice是为了keyup事件中不出现红色提示,而blur事件中则需使用error标红if(this.value == ""){var errormsg = '密码不能为空';error($("#upwdchk"),errormsg);$("#pictie").hide();}el if(countlen(this.value)<6){var errormsg = '密码不能少于6个字符';error($("#upwdchk"),errorm英文姓sg);$("#pictie").hide();}});
大写锁定的思路是:判断输入的字符的最新一位是否是大写字母,如果是大写字母,则提示大写锁定键打开。这种方法并不十分准确,网上有一些插件能判断大写锁定,在这里只是简单地做了一下判断。
提示文字( chrome下 )
①获得焦点、点击时
②输入时
失去焦点时与此效果相同
失去焦点时与此效果相同
失去焦点时与此效果相同
失去焦点时与此效果相同
③失去焦点为空时
④出现大写时
密码栏目至此结束。
重复密码:失去焦点时判断是否和密码一致
reister.html代码片段:
<div class="ipt"><input type="password" name="rupwd" id="rupwd" value="" placeholder="确认密码" /><span id="rupwdchk"></span></div>
register.js代码片段:
$("#rupwd").focus(function(){var noticemsg = '再次输入你设置的密码';notice($("#rupwdchk"),noticemsg);}).click(function(){var noticemsg = '再次输入你设置的密码';notice($("#rupwdchk"),noticemsg);}).keydown(function(){//把焦点移至邮箱栏目if(event.keycode == 13){$("#yzm").focus();}}).blur(function(){if(this.value == $("#upwd").val() && this.value!=""){success($("#rupwdchk"),"");rpwdval = true;}el if(this.value == ""){$("#rupwdchk").html("");}el{var errormsg = '两次输入的密码不一致';error($("#rupwdchk"),errormsg);}});
提示文字:
①获得焦点、点击时
②失去焦点时和密码不一致、一致时分别为
至此重复密码结束。
验证码:不区分大小写
验证码采用4位,可以包含的字符为数字1-9,字母a-f
点击验证码和刷新按钮都能刷新验证码
register.html验证码代码部分:
<div class="ipt iptend"><input type='text' id='yzm' name='yzm' placeholder="验证码"><img id='yzmpic' src='' style="cursor:pointer"> <!-- 验证码图片 --><a style="cursor:pointer" id='changea'><img id="refpic" src="images/ref.jpg" alt="验证码"> <!-- 验证码刷新按钮图片 --></a><span id='yzmchk'></span><input type='hidden' id='yzmhiddennum' name='yzmhiddennum' value=''> <!-- 隐藏域,内容是验证码输出的数字,用户输入的字符与其进行对比 --></div>
register.js验证码部分:
//验证码按钮$("#refpic").hover(function(){$(this).attr("src","images/refhover.jpg");},function(){$(this).attr("src","images/ref.jpg");}).moudown(function(){$(this).attr("src","images/refclick.jpg");}).mouup(function(){$(this).attr("src","images/ref.jpg");});//生成验证码函数function showval() {num = '';for (i = 0; i < 4; i++) {tmp = math.ceil(math.random() * 15);//math.ceil上取整;math.random取0-1之间的随机数if (tmp > 9) {switch (tmp) {ca(10):num += 'a';break;ca(11):num += 'b';break;ca(12):num += 'c';break;ca(13):num += 'd';break;ca(14):num += 'e';break;ca(15):num += 'f';break;}} el {num += tmp;}$('#yzmpic').attr("src","../valcode.php?num="+num);}$('#yzmhiddennum').val(num);}//生成验证码以及刷新验证码showval();$('#yzmpic').click(function(){showval();});$('#changea').click(function(){showval();});//验证码检验function yzmch败笔k(){if($("#yzm").val() == ""){var errormsg = '验证码不能为空';error($("#yzmchk"),errormsg);}el if($("#yzm").val().tolowerca()!=$("#yzmhiddennum").val()){//不区分大小写var errormsg = '请输入正确的验证码';error($("#yzmchk"),errormsg);}el{success($("#yzmchk"),"");yzmval = true;}}//验证码的blur事件$("#yzm").focus(function(){var noticemsg = '不区分大小写';notice($("#yzmchk"),noticemsg);}).click(function(){var noticemsg = '不区分大小写';notice($("yzmdchk"),noticemsg);}).keydown(function(){//提交if(event.keycode == 13){ //先检验后提交yzmchk();formsub();}}).blur(function(){yzmchk();});
valcode.php验证码生成php代码:
<?php header("content-type:image/png");$num = $_get['num'];$imagewidth = 150;$imageheight = 54;//创建图像$numimage = imagecreate($imagewidth, $imageheight);//为图像分配颜色imagecolorallocate($numimage, 240,240,240); //字体大小$font_size = 33;//字体名称$fontname = 'arial.ttf';//循环生成图片文字for($i = 0;$i<strlen($num);$i++){//获取文字左上角x坐标$x = mt_rand(20,20) + $imagewidth*$i/5;//获取文字左上角y坐标$y = mt_rand(40, $imageheight);//为文字分配颜色$color = imagecolorallocate($numimage, mt_rand(0,150), mt_rand(0,150), mt_rand(0,150));//写入文字imagettftext($numimage,$font_size,0,$x,$y,$color,$fontname,$num[$i]);}//生成干扰码for($i = 0;$i<2200;$i++){$randcolor = imagecolorallocate($numimage, rand(200,255), rand(200,255), rand(200,255));imagetpixel($numimage, rand()%180, rand()%90, $randcolor);}//输出图片imagepng($numimage);imagedestroy($numimage);?>
注:把字体”arial”放在服务器的相应目录
提示文字:
①获得焦点时、点击时
②为空且失去焦点时
③输入错误、输入正确且失去焦点时分别为
验证码至此结束。
使用协议:默认勾选;
register.html相应代码:
<span class="fuwu"><input type="checkbox" name="agree" id="agree" checked="checked"><label for="agree">我同意 <a href="#">" 服务条款 "</a> 和 <a href="#">" 网络游戏用户隐私权保护和个人信息利用政策 "</a></label></span>
register.js相应代码:
if($("#agree").prop("checked") == true){fuwuval = true;}$("#agree").click(function(){if($("#agree").prop("checked") == true){fuwuval = true;$("#sub").css("background","#69b3f2");}el{$("#sub").css({"background":"#f2f2f2","cursor":"default"});} });
效果图:
①勾选之后
②未勾选
提交按钮:检测是否所有栏目都填写正确,否则所有填写错误的栏目将给出错误提示。全部填写正确后提交并且发送验证邮件到注册邮箱中,邮件的验证地址在3日后失效
首先在register.js开始部分定义几个参数:nameval,emailval,pwdval,rpwdval,yzmval,fuwuval,全部设为0;当相应栏目符合规定之后,把相应的参数设为true。当所有的参数都为true之后,提交至registerchk.php,否则return fal。
register.html相应代码:
<button type="button" id="sub">立即注册</button>
register.js相应代码:
参数设置:
var nameval,emailval,pwdval,rpwdval,yzmval,fuwuval = 0;
提交事件:
function formsub(){if(nameval != true || emailval!=true || pwdval!=true || rpwdval!=true || yzmval!=true || fuwuval!=true){//当邮箱有下拉菜单时点击提交按钮时不会自动收回菜单,因为下面的return fal,所以在return fal之前判断下拉菜单是否弹出if(nameval != true && $("#unamechk").val()!=""){var errormsg = '请输入用户名';error($("#namechk"),errormsg);}if($(".autoul").show()){$(".autoul").hide();}//以下是不会自动获得焦点的栏目如果为空时,点击注册按钮给出错误提示if($("#uemail").val() == ""){var errormsg = '邮箱不能为空';error($("#uemailchk"),errormsg); }if($("#upwd").val() == ""){var errormsg = '密码不能为空';error($("#upwdchk"),errormsg); }if($("#rupwd").val() == ""){var errormsg = '请再次输入你的密码';error($("#rupwdchk"),errormsg); }if($("#yzm").val() == ""){var errormsg = '验证码不能为空';error($("#yzmchk"),errormsg); }}el{$("#register-form").submit();}}$("#sub").click(function(){formsub();});
显示效果:
有栏目为空时点击提交按钮
注册以及发送邮件:
使用了zend framework( 1.11.11 )中的zend_email组件。zend framework的下载地址是:/d/file/titlepic/zendframework-1.11.11.zip。在zend framework根目录下library路径下,剪切zend文件至服务器下,在注册页面中引入zend/mail/transport/smtp.php和zend/mail.php两个文件。
当点击提交按钮时,表单将数据提交至register_chk.php,然后页面在当前页跳转至register_back.html,通知用户注册结果并且进邮箱激活。
验证邮箱的地址参数使用用户名和一个随机生成的key。
register_chk.php:
<?php include_once 'conn/conn.php';include_once 'zend/mail/transport/smtp.php';include_once 'zend/mail.php';//激活key,生成的随机数$key = md5(rand());//先写入数据库,再发邮件//写入数据库//判断是否开启magic_quotes_gpcif(get_magic_quotes_gpc()){$postuname = $_post['uname'];$postupwd = $_post['upwd'];$postuemail = $_post['uemail'];}el{$postuname = addslashes($_post['uname']);$postupwd = addslashes($_post['upwd']);$postuemail = addslashes($_post['uemail']);}function check_input($value){// 如果不是数字则加引号if (!is_numeric($value)){$value = mysql_real_escape_string($value);}return $value;}$postuname = check_input($postuname);$postupwd = check_input($postupwd);$postuemail = check_input($postuemail);$sql = "inrt into ur(uname,upwd,uemail,activekey)values('".trim($postuname)."','".md5(trim($postupwd))."','".trim($postuemail)."','".$key."')";$num = $conne->uidrst($sql);if($num == 1){//插入成功时发送邮件//用户激活链接$url = 'http://'.$_rver['http_host'].'/php/mylogin/activation.php';//urlencode函数转换url中的中文编码//带反斜杠$url.= '?name='.urlencode(trim($postuname)).'&k='.$key;//定义登录使用的邮箱$envelope = 'dee1566@126.com';//激活邮件的主题和正文$subject = '激活您的帐号';$mailbody = '注册成功,<a href="'.$url.'" target="_blank">请点击此处激活帐号</a>';//发送邮件//smtp验证参数$config = array('auth'=>'login','port' => 25,'urname'=>'dee1566@126.com','password'=>'你的密码');//实例化验证的对象,使用gmail smtp服务器$transport = new zend_mail_transport_smtp('smtp.126.com',$config);$mail = new zend_mail('utf-8');$mail->addto($_post['uemail'],'获取用户注册激活链接');$mail->tfrom($envelope,'发件人');$mail->tsubject($subject);$mail->tbodyhtml($mailbody);$mail->nd($transport);echo "<script>lf.location=\"templets/register_back.html\";</script>";}el{echo "<script>lf.location=\"templets/register_back.html?error=1\";</script>";}?>
邮箱中收取的邮件截图:
然后点击邮箱中的链接进行激活,把数据库中的active设置为1。
activation.php:
<?php ssion_start();header('content-type:text/html;chart=utf-8');include_once 'conn/conn.php';$table = "ur";if(!empty($_get['name']) && !is_null($_get['name'])){//urlencode会对字符串进行转义。所以这里要进行处理if(get_magic_quotes_gpc()){$getname = stripslashes(urldecode($_get['name']));}el{$getname = urldecode($_get['name']);}//urldecode反转url中的中文编码$sql = "lect * from ".$table." where uname='".$getname."' and activekey='".$_get['k']."'";$num = $conne->getrowsnum($sql);if($num>0){$rs = $conne->getrowsrst($sql); //此时数据库里的字符串是不会带反斜杠的 //因此要为下面的sql语句加上反斜杠$rsname = addslashes($rs['uname']);$upnum = $conne->uidrst("update ".$table." t active = 1 where uname = '".$rsname."' and activekey = '".$rs['activekey']."'");if($upnum>0){$_ssion['name'] = urldecode($getname);echo "<script>alert('您已成功激活');window.location.href='main.php';</script>";}el{echo "<script>alert('您已经激活过了');window.location.href='main.php';</script>";}}el{echo "<script>alert('激活失败');window.location.href='templets/register.html';</script>";}}?>
关于注册成功后的邮件页和跳转页,这里不做了。
关于数据库防注入的几种方式magic_quote_gpc,addslashes/stripslashes,mysql_real_eascpae_string,我做了一张表格
附
数据库设计:
ur表
create table ur (id int primary key auto_increment,uname varchar(14) not null default '',upwd char(32) not null default '',uemail varchar(50) not null default '',active tinyint(4) default '0',activekey char(32) not null defalut '')engine=innodb default chart=utf8
说明:md5的长度是32。
模块的目尽管关联词录结构如下:
root:
├─conn
│ ├─conn.php
│
├─templets
│ ├─css
│ │ ├─common.css
│ │ ├─register.css
│ │
│ ├─images
│ │
│ └─js
│ ├─jquery-1.8.3.min.js
│ ├─register.js
│ ├─emailup.js
│
├─chkname.php
├─chkemail.php
├─valcode.php
├─register_chk.php
├─activation.php
├─arial.ttf
│
└─zend
模块至此结束。
本文发布于:2023-04-06 21:15:32,感谢您对本站的认可!
本文链接:https://www.wtabcd.cn/fanwen/zuowen/6545ef73173540fa02a3f71f2718a845.html
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系,我们将在24小时内删除。
本文word下载地址:PHP+jQuery 注册模块开发详解.doc
本文 PDF 下载地址:PHP+jQuery 注册模块开发详解.pdf
留言与评论(共有 0 条评论) |