摘要: //验证手机号码 function checkMobileNum(str){ var re=/^1\d{10}$/; if(re.test(str)){console.log("正确")} else{ console.log("错误"); } } //验证电话号码 function checkPho 阅读全文
posted @ 2016-08-24 11:36 小小07 阅读(103) 评论(0) 推荐(0) 编辑