如何使用javascript验证电话号码?

时间:2012-05-16 10:05:39

标签: javascript validation

比我更智能的人能帮我这个功能吗?其目的是验证表单中的文本输入,电话号码字段只接受0-9,短划线和点。 HTML调用函数很好。

function validateFeedback() {
    var phone = document.getElementById("phone");
    var validNumber = "0123456789.-";
    for (i = 0; i < phone.length; i++); {
        if (validNumber.indexOf(phone.charAt(i)) == -1); {
            alert("You have entered an invalid phone number");
            return false;
        }
    }
    return true;
}

非常感谢您的帮助。

7 个答案:

答案 0 :(得分:9)

正则表达式应该有帮助;)

对不起,我没有尝试过运行此代码,但应该没问题。

function validateFeedback(){
    var phone = document.getElementById("phone");
    var RE = /^[\d\.\-]+$/;
    if(!RE.test(phone.value))
    {
        alert("You have entered an invalid phone number");
        return false;
    }
    return true;
}

答案 1 :(得分:2)

尝试这样:

function validateFeedback()
    {
    var phone = document.getElementById("phone");
    var validNumber = "0123456789.-";


    for(i = 0; i < phone.length; i++) {
            if(validNumber.indexOf(phone.charAt(i)) == -1) {
                    alert("You have entered an invalid phone number");
                    return false;
                }
            }

        return true;
    }

; 不合适...

答案 2 :(得分:1)

试试这个

function validateFeedback(value) {
    var length = value.length;
    chk1="1234567890()-+ ";
    for(i=0;i<length;i++) {
        ch1=value.charAt(i);
        rtn1=chk1.indexOf(ch1);
        if(rtn1==-1)
            return false;
        }
        return true;
    }

答案 3 :(得分:1)

我认为你应该使用正则表达式来做到这一点。有点链接:

function validateFeedback() {
  var phone = document.getElementById("phone").value;
  var reg = new RegExp("[0-9 .-]*"); 

  return reg.test(phone);
}

答案 4 :(得分:1)

如果文本输入在表单中,您可以使用表单ID和元素ID直接引用它:

var phone = document.<formId>.phone;

您要测试的是元素的值,因此您需要:

var phone = document.<formName>.phone.value;

由于该函数可能是从表单上的提交侦听器调用的,因此您可以使用以下方法提高效率:

<form onsubmit="return validateFeedback(this);" ...>

在我看来,电话号码只有数字,而不是“ - ”或“。”字符,所以你应该只测试数字0-9。

所以函数可以像:

function validateFeedback(form) {
  var phoneValue = form.phone.value;

  // Use a regular expression to validate the value
  // is only digits
  if (/\D/.test(phoneValue) {
    // value contains non-digit characters
    // advise user of error then
    return false;
  }
}

您可能需要测试长度是否合理,但请注意,不同地方的电话号码长度不同,具体取决于地区或国家/地区代码的位置和使用情况,以及号码是否适用于移动电话,固定电话或其他

答案 5 :(得分:1)

我更喜欢使用正则表达式来做这样的事情。 请查看我的功能修改版本,该版本应该适用于所有主流浏览器而不需要任何框架。

function validateFeedback() {
    // Get input
    var phone = document.getElementById("phone"),
        // Remove whitespaces from input start and end
        phone = (phone || '').replace(/^\s+|\s+$/g, ''),
        // Defined valid charset as regular expression
        validNumber = "/^[0123456789.-]+$/";

    // Just in case the input was empty
    if (phone.length == 0) {
        // This depends on your application - is an empty number also correct?
        // If not, just change this to "return false;"
        return true;
    }

    // Test phone string against the regular expression
    if (phone.match(validNumber)) {
        return true;
    }

    // Some invalid symbols are used
    return false;
}

答案 6 :(得分:1)

function phonenumber(inputtxt)
{
  var phoneno = /^\d{10}$/;
  if((inputtxt.value.match(phoneno))
        {
      return true;
        }
      else
        {
        alert("message");
        return false;
        }
}