3

使用此代码...

var a = ['volvo','random data'];
var b = ['random data'];
var unique = $.grep(a, function(element) {
    return $.inArray(element, b) == -1;
});

var result = unique ;

alert(result); 

...我能够找到数组“a”的哪个元素不在数组“b”中。

现在我需要找到:

  • 如果数组“a”的元素在数组“b”中
  • 它在数组“b”中的索引是多少

例如“随机数据”在两个数组中,所以我需要返回它在数组 b 中的位置,它是零索引。

4

5 回答 5

6

关于您的评论,这是一个解决方案:

使用jQuery:

$.each( a, function( key, value ) {
    var index = $.inArray( value, b );
    if( index != -1 ) {
        console.log( index );
    }
});

没有jQuery:

a.forEach( function( value ) {
    if( b.indexOf( value ) != -1 ) {
       console.log( b.indexOf( value ) );
    }
});
于 2013-07-25T11:51:41.603 回答
2

将两个数组都转换为字符串并进行比较

if (JSON.stringify(a) == JSON.stringify(b))
{
    // your code here
}
于 2019-03-26T12:43:59.817 回答
1

如果返回的 b 不包含 a的元素,您可以只遍历 a 并使用它Array.prototype.indexOf来获取 b 中元素的索引。indexOf-1

var a = [...], b = [...]
a.forEach(function(el) {
    if(b.indexOf(el) > 0) console.log(b.indexOf(el));
    else console.log("b does not contain " + el);
});
于 2013-07-25T11:53:28.283 回答
1

你可以试试这个:

var a = ['volvo','random data'];
var b = ['random data'];
$.each(a,function(i,val){
var result=$.inArray(val,b);
if(result!=-1)
alert(result); 
})
于 2013-07-25T11:57:55.243 回答
1

这应该可以工作:

  var positions = [];
  for(var i=0;i<a.length;i++){
  var result = [];
       for(var j=0;j<b.length;j++){
          if(a[i] == b[j])
            result.push(i); 
  /*result array will have all the positions where a[i] is
    found in array b */
       }
  positions.push(result);
 /*For every i I update the required array into the final positions
   as I need this check for every element */ 
 }

所以你的最终数组将是这样的:

  var positions = [[0,2],[1],[3]...] 
  //implies a[0] == b[0],b[2], a[1] == b[1] and so on.

希望能帮助到你

于 2013-07-25T11:54:49.043 回答