如何验证文本字段,使其只能包含四位数字

时间:2013-06-29 13:35:47

标签: javascript

我已经设法验证我的字段,所以它总是四位数,但我需要验证,以便它始终是一个数字。我尝试添加这段代码,但它无法正常工作。

if (!(document.ExamEntry.cand.value.match(numbers))) {
    msg += "Only use numeric characters \n";
    document.ExamEntry.cand.focus();
    document.getElementById('cand').style.color = "red";
    result = false;
}  

这将允许四位数组合,如9a9a或!2#3等。 我像这样添加了“数字”变量;

var numbers = /[0-9]/;

进行此验证的更好方法是什么?

2 个答案:

答案 0 :(得分:5)

让我们说你在这里得到你的价值

var val = document.ExamEntry.cand.value;

然后,如果你想让它成为4位数的东西,就这样做吧

var itIsNumber = /^\d{4}$/.test(val); // true if it is what you want

如果你想让它成为1到4位数的东西,就这样做吧

var itIsNumber = /^\d{1,4}$/.test(val); // true if it is what you want

此处有更多示例和详细信息 - > Regular Expressions

答案 1 :(得分:2)

/^[0-9]{4}$/四个数字

任何数量的

/^[0-9]*$/

/^[0-9]+$/至少有一个号码