我有一个用户输入数据的字段(id test)和阻止其中有类型数据的字段:
<div class="someclass">3434 34, 345455, 432 423, 54563 4543, 23232, 232 323, 343 43, random numbers and letters with spaces</div>
<input type="text" id="test">`
如何搜索完整的字词?我尝试使用indexOf()
,但是当我输入数字345
时,我得到了很多结果,但没有一个对应于完整的单词。
答案 0 :(得分:0)
没有jQuery:
var arr = document.querySelector('.someclass').textContent.split(',')
console.log(arr.filter(function (word) {
return word.trim() === '345'
}))
&#13;
<div class="someclass">3434 34, 345, 455, 432 423, 54563 4543, 23232, 232 323, 343 43, random numbers and letters with spaces</div>
&#13;