JavaScript form verifies phone numbers and determines whether an input is a phone number, implemented through regular expressions.
//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