Skip to content

Instantly share code, notes, and snippets.

@lymanlai
Created June 18, 2015 13:36
Show Gist options
  • Save lymanlai/0e08f5f337404b587da0 to your computer and use it in GitHub Desktop.
Save lymanlai/0e08f5f337404b587da0 to your computer and use it in GitHub Desktop.
mobile validation
function checkMobile(){
var sMobile = document.mobileform.mobile.value
if(!(/^1[3|4|5|8][0-9]\d{4,8}$/.test(sMobile))){
alert("不是完整的11位手机号或者正确的手机号前七位");
document.mobileform.mobile.focus();
return false;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment