鉴于item
和array
,我想知道item
中是否存在array
。
item
是一个jQuery对象,例如$(".c")
。您可以假设item.length == 1
。
array
是一个jQuery对象数组,例如[$(".a"), $(".b")]
。此数组中的每个项目可能代表0,1或更多对象。
以下是我想要实现的方法:(live demo here)
function inArray(item, arr) {
for (var i = 0; i < arr.length; i++) {
var items = $.makeArray(arr[i]);
for (var k = 0; k < items.length; k++) {
if (items[k] == item[0]) {
return true;
}
}
}
return false;
}
你能找到更优雅的实现吗?
示例:
HTML:
<div class="a">Hello</div>
<div class="a">Stack</div>
<div class="a">Overflow</div>
<div class="b">Have</div>
<div class="b">a</div>
<div class="b">nice</div>
<div class="b">day!</div>
<div class="c">Bye bye</div>
JS:
console.log(inArray($(".a").eq(2), [$(".a"), $(".b")])); // true
console.log(inArray($(".b").eq(3), [$(".a"), $(".b")])); // true
console.log(inArray($(".c"), [$(".a"), $(".b")])); // false
console.log(inArray($(".a").eq(2), [$(".b")])); // false
console.log(inArray($(".a").eq(2), [])); // false
console.log(inArray($(".c"), [$("div")])); // true
答案 0 :(得分:9)
根据费利克斯的建议:
[$(selector1), $(selector2), ... ]
可以简化为
$(selector1, selector2, ...)
或
$(selector1).add(selector2)...
然后它可以实现为:
function inArray(item, arr) {
return (arr.index(item) != -1);
}
答案 1 :(得分:8)
怎么样
if(jQuery.inArray(some, array) === -1)
{
//process data if "some" is not in array
}
else
{
//process if "some" is in array
}
答案 2 :(得分:0)
if($.inArray("valueYouWantToFind", nameOfTheArray) == true) {
Your code;
}
Eg.,
var userChoice = ["yes"];
if($.inArray('yes',userChoice) == true) {
alert("found");
}
答案 3 :(得分:0)
console.log(!!~$.inArray("a", ["a", "b", "c"]));
答案 4 :(得分:-1)
data = [
{val:'xxx',txt:'yyy'},
{val:'yyy',txt:'aaa'},
{val:'bbb',txt:'ccc'}
];
var dummyArray = [];
var distinctValueArray = [];
$.each(data, function (index, firstobject) {
//push first element of object in both dummy array and distinct array.
if (index == 0) {
distinctValueArray.push(firstobject);
dummyArray.push(firstobject.txt);
}
else {
//started from 2nd index.
if ($.inArray(firstobject.txt, dummyArray) == -1) {
distinctValueArray.push(firstobject);
}
dummyArray.push(firstobject.txt);
}
});
dummyArray.length=0;