js验证手机号码格式

验证手机号码格式javascript代码
None.gif function  ismobile(mobile)
ExpandedBlockStart.gifContractedBlock.gif
dot.gif {
InBlock.gif    
if(mobile.length!=11)
ExpandedSubBlockStart.gifContractedSubBlock.gif    
dot.gif{
InBlock.gif        alert('请输入合法的手机号码!');
InBlock.gif        document.form1.mobile.focus();
InBlock.gif        
return false;
ExpandedSubBlockEnd.gif    }

InBlock.gif    
ExpandedSubBlockStart.gifContractedSubBlock.gif    
var myreg = /^(((13[0-9]dot.gif{1})|159)+\ddot.gif{8})$/;
InBlock.gif    
if(!myreg.test(mobile))
ExpandedSubBlockStart.gifContractedSubBlock.gif    
dot.gif{
InBlock.gif        alert('请输入合法的手机号码!');
InBlock.gif        document.form1.mobile.focus();
InBlock.gif        
return false;
ExpandedSubBlockEnd.gif    }

InBlock.gif    
return true;
ExpandedBlockEnd.gif}
可以更改 正则表达式 实现更为复杂的验证

转载于:https://www.cnblogs.com/wangxiang/articles/773734.html

你可能感兴趣的:(前端,javascript)