function checkMobile(tel){
var phoneReg = !!tel.match(/^(13[0-9]|14[01456879]|15[0-35-9]|16[2567]|17[0-8]|18[0-9]|19[0-35-9])\d{8}$/);
var telReg = !!tel.match(/^([0-9]{3,4}-)?[0-9]{7,8}$/);
&n...
//验证护照号码
function checkPassport(code){
var tip = "OK";
var pass= true;
if(!code || !/^((1[45]\d{7})|(G\d{8})|(P\d{7})|(S\d{7,8}))?$/.test(code)){
&nbs...