gpt4 book ai didi

javascript - jquery 值与格式不匹配

转载 作者:塔克拉玛干 更新时间:2023-11-02 21:30:31 24 4
gpt4 key购买 nike

我想验证输入字段并检查值是否不匹配时间格式 06:15但是 .not 语句应该在哪里呢?

($("#id").val().not.match(/^(2[0-3]|[01][0-9]):[0-5][0-9]$/))

最佳答案

在这种情况下你不应该使用.not

.not Jquery 函数需要一个SelectorElementArray 作为参数,例如:

$( "li" ).not( ":even" );

正如 Arun P Johny 在评论中提到的,最好的方法是使用逻辑 NOT 运算符:! 来执行逻辑否定在你的表情上:

if(!$("#id").val().match(/^(2[0-3]|[01][0-9]):[0-5][0-9]$/)) {
//not matching with the regExp
}

关于javascript - jquery 值与格式不匹配,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31181262/

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