JavaScript中的唯一数组
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了JavaScript中的唯一数组相关的知识,希望对你有一定的参考价值。
Thanks to the original author.
Array.prototype.getUnique = function(){ var u = {}, a = []; for(var i = 0, l = this.length; i < l; ++i){ if(this[i] in u) continue; a.push(this[i]); u[this[i]] = 1; } return a; }
以上是关于JavaScript中的唯一数组的主要内容,如果未能解决你的问题,请参考以下文章
使用javascript在具有唯一ID的html标签标签中显示数组中的文本