写一个js遍历数组里的值判断和input文本框获取的值是否一致
时间: 2023-03-13 17:51:22 浏览: 109
判断输入值是否相同
可以使用Array.prototype.includes()方法,例如:let inputVal = document.getElementById('input').value;
let arr = [1, 2, 3, 4];
if (arr.includes(inputVal)) {
console.log('匹配');
} else {
console.log('不匹配');
}
阅读全文