1

我正在尝试编写 javascript 代码以确保表单中的字段的前 2 个字符为字母(美国),其余 8 个为数字。

总数必须是 10,如果其中任何一个不满意,我应该抛出一个警告框。

我现在正在检查数字,但我不知道如何在同一字段中结合检查字母和数字。

这是我检查数字的代码。

请帮帮我!sid是我的字段名称。

// only allow numbers to be entered
var checkOK = "0123456789";
var checkStr = document.forms[0].sid.value;
var allValid = true;
var allNum = "";

for (i = 0; i < checkStr.length; i++)
{
    ch = checkStr.charAt(i);
    for (j = 0; j < checkOK.length; j++)
        if (ch == checkOK.charAt(j))
            break;

    if (j == checkOK.length)
    {
        allValid = false;
        break;
        if (ch != ",")
            allNum += ch;
    }
    if (!allValid)
    {
        alert("Please enter only 8 numeric characters in the \"sid\" field.");
        return (false);
    }
}    
4

4 回答 4

5

单个正则表达式将轻松执行此检查:

   /^[a-zA-Z]{2}\d{8}$/

/^ 匹配字符串的开头

[a-zA-Z]{2} 完全匹配 2 个字母字符

\d{8} 精确匹配 8 位数字

$/ 匹配字符串结尾

使用如下:

 /^[a-zA-Z]{2}\d{8}$/.test (str)   // Returns true or false
于 2012-10-10T09:41:57.437 回答
0

您可以使用正则表达式。jsfiddle

var regExp = /[a-z]{2}[0-9]{8}/i;

var text = 'ab12345678'; 
if(text .replace(/[a-z]{2}[0-9]{8}/i, "").length > 0){
    alert("Please enter only 8 numeric characters in the \"sid\" field.");
    return (false);
} 
于 2012-10-10T09:43:21.720 回答
0

简单正则表达式,检查 2 个字符 + 8 个数字

var checkStr = document.forms[0].sid.value;
if (checkStr.match(/\b[A-z]{2}[0-9]{8}\b/) === null) {
    alert("Please enter only 8 numeric characters in the \"sid\" field.");
    return (false);
}
于 2012-10-10T09:44:17.050 回答
0

/^([a-zA-Z]{2}\d{8})$/;应该检查 2 个字符,然后是 8 个小数。

于 2012-10-10T09:44:23.383 回答