现代的网上商城中越来越多的开始使用手机注册,方便,快捷,然后作为前端,也就不可避免的要在界面上碰到关于手机号的问题,今天小小总结一下该注意哪些问题,又该来如何实现呢?
<div class="phone_num"> <label class="float_left">手机号码:</label> <input type="text" onkeyup="javascript:ckphone(this)" onafterpaste="javascript:ckphone(this)" onchange="javascript:ckphonelast(this)" onblur="javascript:ckphonelast(this)" /> <div class="show_phone_num"> <span id="phone_showtip"><!--155 77777 6666--></span> <span class="phone_from_where" id="phone_belong"> <!--(广西 中国联通)--> </span> </div> </div>
.phone_num { position: relative; height: 50px; line-height: 50px; margin-bottom: 30px; } .phone_num input { width: 300px; height: 30px; padding: 5px 5px; float: left; } .phone_num span { display: inline-block; margin-left: 30px; } .show_phone_num { width: 500px; height: 40px; line-height: 40px; position: absolute; left: 75px; color: #ff5205; font-size: 18px; font-weight: bold; bottom: -30px; } .phone_from_where { display: inline-block; font-size: 14px; color: #000; height: 30px; line-height: 30px; margin-left: 60px; font-weight: 100; position: relative; }
function ckphonelast(n){ if(n.value.length!=11){ $('#phone_showtip').html("请输入正确的手机号"); }else{ var partten = /^1[3,5,8]\d{9}$/; if(partten.test(n.value)){ ckbelong(n.value); }else{//正则判定不是手机号 $('#phone_showtip').html("请输入正确的手机号"); } } } function ckphone(n){ $('#phone_showtip').html(""); $("#phone_belong").html(""); var ck=false; n.value=n.value.replace(/\D/g,''); if(n.value.length>11){ //只能录入11位数字 n.value=n.value.substring(0,11); } if(n.value.length<=3){ //为了显示时前面的表格 $('#phone_showtip').html(n.value); } if(n.value.length>3){ $('#phone_showtip').html(n.value.substring(0,3)).append(" ").append(n.value.substring(3)); } if(n.value.length>7){ $('#phone_showtip').html(n.value.substring(0,3)).append(" ").append(n.value.substring(3,7)).append(" ").append(n.value.substring(7)); } if(n.value.length==11){ var partten = /^1[3,5,8]\d{9}$/; if(partten.test(n.value)){ ck=true; }else{//正则判定不是手机号 $('#phone_showtip').html("请输入正确的手机号"); } } if(ck){ ckbelong(n.value); } }这里简单解释下以上代码:
<input type="text" onkeyup="this.value=this.value.replace(/\D/g,'')" onafterpaste="this.value=this.value.replace(/\D/g,'')" />而在这里我们只是将this对象直接传递过来,然后进行操作。这样我们已经保证录入数据都为数字,我们就完成了第一步,然后进行第二步操作,同步录入信息。
function ckbelong(phone){ $.ajax({ type: "get", url: 'http://tcc.taobao.com/cc/json/mobile_tel_segment.htm?tel='+phone, dataType: "jsonp", jsonp: "callback", success: function(n){ $("#phone_belong").html(data.province+" "+data.catName); }, error:function (data){ $("#phone_belong").html("该手机号存在问题"); } }); }我们来简单看下它的返回值都是什么呢?