gpt4 book ai didi

javascript - jQuery 过滤两个参数

转载 作者:行者123 更新时间:2023-11-30 23:49:09 24 4
gpt4 key购买 nike

此代码验证一组表单元素,

var objects = $(".validated").filter(function (){
return $(this).val() == '';
});

例如,我是否也可以过滤 >10 的长度?

谢谢!

最佳答案

将另一个过滤器链接在一起,或修改条件。

var objects = $(".validated").filter(function (){
return $(this).val() == '' || $(this).val().length > 10;
});

或者

var objects = $(".validated").filter(function (){
return $(this).val() == '';
}).filter(function(){
return $(this).val().length > 10;
});

关于javascript - jQuery 过滤两个参数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1930460/

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