gpt4 book ai didi

jQuery 验证 addMethod - 检查是否相同的域

转载 作者:行者123 更新时间:2023-12-01 06:08:20 28 4
gpt4 key购买 nike

我正在尝试使用 jQuery Validation addMethod 检查 URL 是否来自同一域。

这是我到目前为止所得到的,但它似乎不起作用:

jQuery.validator.addMethod("domain", function(value, element) { 
return this.optional(element) || /^http:\/\/testsite.com/.test(value);
}, "The URL doesn't match.");

$("#url_form").validate({
rules: {
url: {
required: true,
url: true,
domain : true
}
}
});

最佳答案

明白了。可能是更好的方法,但这对我有用:

jQuery.validator.addMethod("domain", function(value, element) { 
return this.optional(element) || /^(http:\/\/www\.|https:\/\/www\.|http:\/\/|https:\/\/)testsite.com/.test(value);
}, "The URL must be on the same Site domain");

关于jQuery 验证 addMethod - 检查是否相同的域,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3049977/

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