gpt4 book ai didi

jQuery 允许手机号码指定特定号码

转载 作者:行者123 更新时间:2023-12-01 03:36:26 25 4
gpt4 key购买 nike

我想允许输入具有这些组合的手机号码(7或8或9)。

我只是限制字母(只允许数字),但如何限制除 7、8 或 9 之外的数字。

$(document).on('keypress', '.mobnum', function (e) {
//if the letter is not digit then display error and don't type anything
if (e.which != 8 && e.which != 0 && (e.which < 48 || e.which > 57)) {
if (e.which == 118){
return true;
}else{
return false;
}
}
});

最佳答案

使用以下功能限制手机号码

$(document).on('keypress', '.mobnum', function (e) {
var mobnum="987654321";
if (mobnum === ''|| mobnum === 'null'|| mobnum === null || phonenumber(mobnum)=== false)
{
}
else
{
your operations
}
});
function phonenumber(mobnum) {
var pattern = new RegExp(/^[789]\d{9}$/i);
return pattern.test(mobnum);
};

关于jQuery 允许手机号码指定特定号码,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33141880/

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