gpt4 book ai didi

javascript - 检查唯一输入名称中是否存在输入值

转载 作者:行者123 更新时间:2023-11-29 10:32:44 30 4
gpt4 key购买 nike

我有一个这样的 html 输入文本:

<input type="text" name="address[5][firstname]">

我想检查该值是否仅通过包含特定字符串(如名字)的输入存在。这是我到目前为止所做的:

if($( "input[name*='[firstname]']" ).length < 1){
console.log('in');
}

if($( "input[name*='[firstname]']" ).length < 1){
console.log('in');
}

最佳答案

i want to check if the value is exist only by input which contain a specific string like firstname

您的选择器不错,但您的 if条件不对。您正在查看 < 1但是已经有一个元素匹配并且长度是1 ,因此条件不满足。将其更改为 > 0

if($( "input[name*='[firstname]']" ).length > 0){
alert('in');
}

https://jsfiddle.net/sureshatta/tuwdzgue/

关于javascript - 检查唯一输入名称中是否存在输入值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42340478/

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