PHP
·
发表于 5年以前
·
阅读量:8292
//参数value为数字或字符串
//校验规则:
// 共6位,且不能以0开头
function isPostCode(value){
return /^[1-9][0-9]{5}$/.test(value.toString());
}