gpt4 book ai didi

javascript - 在动态文本框中查找字符串 JQUERY

转载 作者:行者123 更新时间:2023-12-02 17:59:18 29 4
gpt4 key购买 nike

我正在尝试在动态文本框中搜索字符串“sample”,但似乎无法使其工作。我的代码有什么问题吗?

var sentence =  document.getElementsByName('sentence[]');
for (i=0; i<sentence.length; i++)
{
if( sentence[i].indexOf('sample') != -1 )
{
alert("String Found");
return false;
}
}

最佳答案

sentence[i] 是一个 dom 元素,您可能需要使用 sentence[i].value

var sentence = document.getElementsByName('sentence[]');
for (i = 0; i < sentence.length; i++) {
if (sentence[i].value.indexOf('sample') != -1) {
alert("String Found");
return false;
}
}

jQuery

var valid = true;
$('input[name="sentence[]"]').each(function () {
if (this.value.indexOf('sample') != -1) {
valid = false;
//to stop the iteration
return false;
}
});
if (!valid) {
alert("String Found");
return false;
}

var valid = $('input[name="sentence[]"]').filter(function () {
return this.value.indexOf('sample') != -1
}).length == 0;
if (!valid) {
alert("String Found");
return false;
}

关于javascript - 在动态文本框中查找字符串 JQUERY,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20696181/

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