Validating Phone Numbers Using Javascript

前端 未结 9 2141
刺人心
刺人心 2021-01-06 00:41

I\'m working on a web form with several fields and a submit button. When the button is clicked, I have to verify that the required text boxes have been filled in and that th

相关标签:
9条回答
  • 2021-01-06 00:53

    As for your regexp I guess it should be

    ^\+{0,2}([\-\. ])?(\(?\d{0,3}\))?([\-\. ])?\(?\d{0,3}\)?([\-\. ])?\d{3}([\-\. ])?\d{4}
    

    But in general the presumption is not correct because one might enter something like ++44 20 1234 56789 or +44 (0) 1234 567890 it is better to do something like this

    var phone = document.forms["myForm"]["phone"].value;
    var phoneNum = phone.replace(/[^\d]/g, '');
    if(phoneNum.length > 6 && phoneNum.length < 11) {  return true;  }
    

    this will assure that entered value has 7 to 10 figures nevertheless what the formatting is. But you have to think about max length for number might be more than 10 as in the sample above.

    0 讨论(0)
  • 2021-01-06 00:55
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml">
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
    <link rel="stylesheet" type="text/css" href="../Homepage-30-06-2016/Css.css" >
    <title>Form</title>
    
    <script type="text/javascript">
    
            function isChar(evt) {
                evt = (evt) ? evt : window.event;
                var charCode = (evt.which) ? evt.which : evt.keyCode;
                if (charCode > 47 && charCode < 58) {
    
                    document.getElementById("error").innerHTML = "*Please Enter Your Name Only";
                    document.getElementById("fullname").focus();
                    document.getElementById("fullname").style.borderColor = 'red';
                    return false;
                }
                else {
                    document.getElementById("error").innerHTML = "";
                    document.getElementById("fullname").style.borderColor = '';
    
                    return true;
                }
            }
    </script>
    </head>
    
    <body>
    
            <h1 style="margin-left:20px;"Registration Form>Registration Form</h1><hr/>
    
               Name: <input id="fullname" type="text" placeholder="Full Name*"
                     name="fullname" onKeyPress="return isChar(event)" onChange="return isChar(event);"/><label id="error"></label><br /><br />
    
    <button type="submit" id="submit" name="submit" onClick="return valid(event)" class="btn btn-link text-uppercase"> Submit now</button>
    
    0 讨论(0)
  • 2021-01-06 00:56
    <html>
    <title>Practice Session</title>
    <body>           
    <form name="RegForm" onsubmit="return validate()" method="post">  
    <p>Name: <input type="text" name="Name"> </p><br>        
    <p>Contact: <input type="text" name="Telephone"> </p><br>   
    <p><input type="submit" value="send" name="Submit"></p>          
    </form> 
    </body>
    <script> 
    function validate()                                    
    { 
    var name = document.forms["RegForm"]["Name"];                
    var phone = document.forms["RegForm"]["Telephone"];  
    if (name.value == "")                                  
    { 
    window.alert("Please enter your name."); 
    name.focus();
    return false;
    }
    else if(isNaN(name.value) /*"%d[10]"*/)
    {
    alert("name confirmed");
    }
    else{ 
    window.alert("please enter character"); 
    }   
    if (phone.value == "")                           
    { 
    window.alert("Please enter your telephone number."); 
    phone.focus();
    return false; 
    } 
    else if(!isNaN(phone.value) /*phone.value == isNaN(phone.value)*/)
    {
    alert("number confirmed");
    }
    else{
    window.alert("please enter numbers only");
    }   
    }
    </script> 
    </html>
    
    0 讨论(0)
  • 2021-01-06 01:00

    To validate Phone number using regular expression in java script.

    In india phone is 10 digit and starting digits are 6,7,8 and 9.

    Javascript and HTML code:

    function validate()
    {
      var text = document.getElementById("pno").value;
      var regx = /^[6-9]\d{9}$/ ;
      if(regx.test(text))
        alert("valid");
      else
        alert("invalid");
    }
    <html>
        <head>
            <title>JS compiler - knox97</title>
      </head>
      <body>
      <input id="pno" placeholder="phonenumber" type="text" > 
        </br></br>
        <button onclick="validate()" type="button">submit</button>
      </body>
    </html>

    0 讨论(0)
  • 2021-01-06 01:02

    Try this I It's working.

    <form>
    <input type="text" name="mobile" pattern="[1-9]{1}[0-9]{9}" title="Enter 10 digit mobile number" placeholder="Mobile number" required>
    <button>
    Save
    </button>
    </form>
     

    https://jsfiddle.net/guljarpd/12b7v330/

    0 讨论(0)
  • 2021-01-06 01:03

    Having seem simply too many edge cases, I went for a simpler check:

    ^(([0-9\ \+\_\-\,\.\^\*\?\$\^\#\(\)])|(ext|x)){1,20}$

    The first thing one may point out is allowing repetition of "ext", but the purpose of this regex is to prevent users from accidentally entering email ids etc. instead of phone numbers, which it does.

    0 讨论(0)
提交回复
热议问题