A5下载站:努力做内容最丰富最安全的下载站! 网站地图最新更新下载排行专题软件发布

热门软件

地铁跑酷

冒险迷岛

全民迷宫

连连消大作战

小河狸创客

阿里健康医鹿

支付宝app

番薯小说

MOMO陌陌

虾米音乐app

位置导航:A5下载 > 源码技巧 > 父类数据

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

时间:2015-07-01 15:30来源:a5源码作者:zhao浏览:24
这篇文章主要介绍了JavaScript判断数组是否包含指定元素的方法,涉及javascript中contains方法的使用技巧,需要的朋友可以参考下……

本文实例讲述了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程序设计有所帮助。