gpt4 book ai didi

jQuery自定义验证: custom phone number format

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

我有一个表格,您必须在其中输入您的电话号码和其他字段。

我正在使用 jQuery Validate 验证表单。

要验证电话号码字段,我执行以下操作:

rules: {
phone: {
required: true,
minlength: 9,
number:true
},..

但我还需要检查电话是否以 6 开头。

我怎样才能做到这一点?

最佳答案

您可以添加自定义验证器

jQuery.validator.addMethod("phoneStartingWith6", function(phone_number, element) {
phone_number = phone_number.replace(/\s+/g, "");
return this.optional(element) || phone_number.match(/^6\d{8,}$/);
}, "Phone number should start with 6");

并像这样使用它:

rules: {
phone: {
required: true,
minlength: 9,
phoneEnding6: true
},..

您需要编辑 phone_number.match 中的正则表达式以满足您的要求。

关于jQuery自定义验证: custom phone number format,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4490622/

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