gpt4 book ai didi

javascript - 使用 jQuery 检查 4 个数字和 2 个字母的输入

转载 作者:行者123 更新时间:2023-11-28 04:58:23 24 4
gpt4 key购买 nike

我有一个文本<input>maxlength="6"但我想检查前 4 个字符是否为数字,后 2 个字符是否为字母。

我有这个代码:

$("input[id='post']").keyup(function count() {
//what goes here?
});

但我真的不知道如何继续下去。

最佳答案

你可以使用正则表达式来做到这一点

$("input[id='post']").keyup(function count() {
var input = this.value;
var regex = new RegExp(/^[0-9]{4}[a-z]{2}$/i);
console.log(regex.test(input));
});

[0-9]{4} - 检查 0-9 之间的四位数字。

[a-z]{2} - 检查 a-z 之间的两个字母。末尾的 i 标志使检查不区分大小写。

关于javascript - 使用 jQuery 检查 4 个数字和 2 个字母的输入,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19221982/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com