本文介绍了如何在javascript中删除arraylist中的重复项?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

需要在javascript中删除arraylist中的重复项...



<!DOCTYPE html>





试试吧

Need to remove duplicates in arraylist in javascript...

<!DOCTYPE html>


Try it

推荐答案

Array.prototype.complexIndexOf = function(type) {
  for (var x = 0; x < this.length; x++) {
    if (this[x].id === type.id && this[x].name === type.name)
	  return i;
  }
  return -1;
}

使用此原型,您只需将for循环中的条件更改为:

With this prototype in place, you simply change the condition in your for loop to:

if (t.complexIndexOf(array[x]))t.push(array);


这篇关于如何在javascript中删除arraylist中的重复项?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

09-02 16:39