0

我有一个字符串'a',并且想要所有具有'a'字符串数组的结果。

var searchquery = 'a';
var list = [temple,animal,game,match, add];

我想要result = [animal,game,match,add];所有名称中包含的元素'a'。我该如何实现?

4

2 回答 2

4
<div id="display"></div>

var searchquery = 'a';
var list = ["temple", "animal", "game", "match", "add"];
var results = list.filter(function(item) {
    return item.indexOf(searchquery) >= 0;
});

document.getElementById("display").textContent = results.toString();

jsfiddle上

于 2013-04-21T18:25:17.540 回答
2

您可以过滤列表:

var searchquery = 'a';
var list = ['temple', 'animal', 'game', 'match', 'add'];
var results = list.filter(function(item) {
    return item.indexOf(searchquery) >= 0;
});
// results will be ['animal', 'game', 'match', 'add']

(请注意,您需要引用list数组中的字符串。)

于 2013-04-21T18:21:12.453 回答