首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 网站开发 > JavaScript >

js验证搬动号码

2013-12-13 
js验证移动号码function chkMobileCode(value){var mobile13 /^13[4-9]\d{8}$/var mobile15 /^15[012

js验证移动号码
function chkMobileCode(value){ var mobile13 = /^13[4-9]\d{8}$/; var mobile15 = /^15[012789]\d{8}$/; var mobile14 = /^14[7]\d{8}$/; var mobile18 = /^18[2378]\d{8}$/; return (mobile13.test(value) || mobile15.test(value) || mobile14.test(value) || mobile18.test(value));}

?

热点排行