Home  >  Article  >  Web Front-end  >  JavaScript implements form verification phone number through regular expression_javascript skills

JavaScript implements form verification phone number through regular expression_javascript skills

WBOY
WBOYOriginal
2016-05-16 16:56:28987browse

JavaScript form verifies phone numbers and determines whether an input is a phone number, implemented through regular expressions.

Copy code The code is as follows:

//Check the phone number
function isTel(str ){
var reg=/^([0-9]|[-]) $/g ;
if(str.length18){
return false;
}
else{
return reg.exec(str);
}
}
Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn