在 jQuery 里,
合并成为 [1, 2, 3, 4, 5, 6, 7, 8],重复的只显示一个
我想到的办法是分成两步:
- 合并成为 [1, 2, 3, 4, 5, 2, 4, 6, 7, 8]
- 去重
代码如下:
var a = [1, 2, 3, 4, 5];
var b = [2, 4, 6, 7, 8];
$.merge(a,b);
console.log($.unique(a));
$.merge() 操作形成一个数组,其中包含两个数组的所有元素。
$.unique() 函数通过搜索的数组对象,排序数组,并移除任何重复的节点。
参见 jQuery 手册:
PS:关于 concat 与 $.merge
@engin123456789 答案中用 concat 来合并数组,关于两者的区别在 api.jquery.com 评论区有所提到:
q: What are the benefits to using this over the regular concat() method in JavaScript?
a: None, if both arguments are true arrays.
However, it also supports merging objects as arrays since 1.4.
Before 1.4, it contained fixes for specific browsers and removed comment nodes.
所以我也赞一下他。