JavaScript判断数组是否包含指定元素的方法

Posted 飞翔梦想

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了JavaScript判断数组是否包含指定元素的方法相关的知识,希望对你有一定的参考价值。

本文实例讲述了javascript判断数组是否包含指定元素的方法。分享给大家供大家参考。具体如下:

这段代码通过prototype定义了数组方法,这样就可以在任意数组调用contains方法

/**
 * Array.prototype.[method name] allows you to define/overwrite an objects method
 * needle is the item you are searching for
 * this is a special variable that refers to "this" instance of an Array.
 * returns true if needle is in the array, and false otherwise
 */
Array.prototype.contains = function ( needle ) {
  for (i in this) {
    if (this[i] == needle) return true;
  }
  return false;
}

  用法:

// Now you can do things like:
var x = Array();
if (x.contains(‘foo‘)) {
  // do something special
}

  

以上是关于JavaScript判断数组是否包含指定元素的方法的主要内容,如果未能解决你的问题,请参考以下文章

jquery里判断数组内是否包含了指定的值或元素的方法

javascript数据判断是否有指定元素

js和jQuery判断数组是否包含指定元素

js怎么判断某个数组里面是不是包含这个元素

前端面试 JavaScript— JS判断数组中是否包含某个值

前端面试 JavaScript— JS判断数组中是否包含某个值