摘要: 关于input手机号的验证一、手机号的判断方法:function isPhoneTel(n){ var reg = /^1[3|4|5|8]\d{9}$/; if(!!(reg.test(n))){ return true; } else{ return false; }}二、input绑定事件phone: function(){ var _this = this; // 只可以输入数字、删除等键 _this.kphone.onkeydown = function(e){ e = e || window.... 阅读全文
posted @ 2013-09-01 22:10 前端咖 阅读(5240) 评论(0) 推荐(0) 编辑