首页 > 编程语言 > 详细

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

时间:2017-03-10 10:41:33      阅读:136      评论:0      收藏:0      [点我收藏+]

本文实例讲述了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判断数组是否包含指定元素的方法

原文:http://www.cnblogs.com/laneyfu/p/6529330.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!