gpt4 book ai didi

javascript - 验证文本字段的前 2 个字符

转载 作者:行者123 更新时间:2023-11-28 04:07:17 25 4
gpt4 key购买 nike

我有一个文本框,用户需要在其中输入他/她的手机号码。但是,我需要验证前 2 个数字(字符)以确保手机号码的格式正确(作为验证规则之一)。

手机号码需以以下任意一位2位数字开头:

44xxxxxx55xxxxxx65xxxxxx78xxxxxx

谁能告诉我如何验证前两个字符数字并检查它们是否是上述选项之一?

编辑这是我尝试过但没有用的方法:

HTML

<input id="mob" name="mob" type="tel" placeholder="Enter your mobile number">
<a href="#" id="validate">Validate</a>

JS

var mobile_prefix = $('#mob').subsubstr(0,2);
$('#validate').click(function(){
if (mobile_prefix == 44||55||65||78) {
alert('correct');
}
else {
alert('incorrect');
}
});

最佳答案

我认为.match()有你要找的东西。复习一下 regular expressions .

if (StringFromSelectField.match(/^(44|55|65|78)/)) {
//do something
}

关于javascript - 验证文本字段的前 2 个字符,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14071178/

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