gpt4 book ai didi

javascript - 验证手机号码用户数

转载 作者:行者123 更新时间:2023-11-30 05:45:22 25 4
gpt4 key购买 nike

我有以下功能来验证手机号码。

 function validate()
{
var a = document.form.mobile_no.value;
if(a=="")
{
alert("please Enter the Contact Number");
//document.form.mobile_no.focus();
return false;
}
if(isNaN(a))
{
alert("Enter the valid Mobile Number(Like : 9566137117)");
//document.form.mobile_no.focus();
return false;
}
if((a.length < 1) || (a.length > 10))
{
alert(" Your Mobile Number must be 1 to 10 Integers");
//document.form.mobile_no.select();
return false;
}

我从表单中调用函数为:

<form action="" method="post"  onsubmit="validate()" id="teacher_form">

来自用户的输入被视为:

但是这个过程并没有像它应该的那样验证结果。该条目在没有输入验证的情况下被接受。

最佳答案

你可以使用正则表达式作为

var regexMobile = /^[0-9]+$/;
var a = document.form.mobile_no.value;
if (a.length < 10 || !a.match(regexMobile)) {
alert("Enter valid 10 digit Mobile Number");
return false;
}

关于javascript - 验证手机号码用户数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18268489/

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