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

JavaScript implements form verification phone number through regular expression_javascript skills

WBOY
Release: 2016-05-16 16:56:28
Original
1025 people have browsed it

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);
}
}
source:php.cn
Statement of this Website
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
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template