2

我需要验证文本框的值。文本框用于格式为 0123456789 的客户电话号码(即仅 10 个数字,这意味着在输入数字时不允许用户添加任何字母或特殊符号)

数据通过表单 POST 方法发送到页面 (validate.php)。

我想要一个只接受10个数字的函数,没有字母或字符。

4

4 回答 4

0

如AVD所述,您可以在 PHP 脚本中使用正则表达式,也可以使用 jQuery 的验证插件阻止用户提交表单。

HTML

<form name="contact" id="contact">
    <input name="number" id="number" />
</form>

查询

$("#contact").validate({
    rules: {
        number: {
            required: true,
            minlength: 10,
            numeric: true
                }
    },
        messages: {
            number: {
                required: "Enter a phone number",
                minlength: "The phone number is too short",
                numeric: "Please enter numeric values only"
            }
        }
})

更多信息在jQuery/Validation

于 2012-06-06T06:52:15.570 回答
0

我认为这对你有用:

<html>
<head>
<script type="application/javascript">

  function isNumberKey(evt)
      {
         var charCode = (evt.which) ? evt.which : event.keyCode
         if (charCode > 31 && (charCode < 48 || charCode > 57))
            return false;

         return true;
      }

</script>
</head>

<body>
    <input type="text" name="tel_num" value="" onkeypress="return isNumberKey(event)" maxlength="10"/>
</body>
</html>
于 2012-06-06T06:53:16.707 回答
0

尝试这个。它验证每个键输入上的条目

HTML:

<input size="10" maxlength="10" type="text" name="p_len" id="p_len" value="" onkeyup="check(this)" />

Javascript:

function check(o) {
    v=o.value.replace(/^\s+|\s+$/,''); // remove any whitespace
    if(o=='') {
        return;
    }
    v=v.substr(v.length-1);
    if(v.match(/\d/g)==null) {
        o.value=o.value.substr(0,o.value.length-1).replace(/^\s+|\s+$/,'');
    }
}

它会在输入后立即删除非数字输入,并且长度限制为 10。

希望这可以帮助。

于 2012-06-06T07:07:35.023 回答
0

例如,您可以使用 preg_match

preg_match('/^[0-9]{10}$/', $_POST['your-value']);
于 2012-06-06T06:46:23.250 回答