JavaScript form verifies phone numbers and determines whether an input is a phone number, which is implemented through regular expressions.
Copy the code code as follows:
//check phone number
function isTel(str){
var reg=/^([0-9]|[/-])+$/g;
if(str.length18){
return false;
}
else{
return reg.exec(str);
}
}