gpt4 book ai didi

javascript - 存在重复电子邮件时发出警报消息

转载 作者:行者123 更新时间:2023-12-03 06:59:42 24 4
gpt4 key购买 nike

当存在重复的电子邮件地址时,我需要显示一条警报消息。

这是我的代码:

$.validator.addMethod("contactpersonen-email", function(value, element) {
var parentForm = $(element).closest('form');
var timeRepeated = 0;
if (value != '') {
$(parentForm.find(':text')).each(function () {
if ($(this).val() === value) {
timeRepeated++;
}
});
}
return timeRepeated === 1 || timeRepeated === 0;
alert('duplicate');
}, "Email adres bestaat al");

但是这不起作用。你能找出问题所在并使其正常工作吗?

最佳答案

$.validator.addMethod("contactpersonen-email", function(value, element) {
var parentForm = $(element).closest('form');
var timeRepeated = 0;
if (value != '') {
$(parentForm.find(':text')).each(function () {
if ($(this).val() === value) {
timeRepeated++;
}
});
}
var ok = timeRepeated === 1 || timeRepeated === 0;
if(!ok) alert('duplicate');
return ok;
}, "Email adres bestaat al");

关于javascript - 存在重复电子邮件时发出警报消息,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37110430/

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