JavaScript判断数组是否包含指定元素的方法
更新时间:2015年07月01日 12:14:40 作者:不吃皮蛋
这篇文章主要介绍了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程序设计有所帮助。
相关文章
layui lay-verify form表单自定义验证规则详解
今天小编就为大家分享一篇layui lay-verify form表单自定义验证规则详解,具有很好的参考价值,相信我对大家有所帮助。一起跟随小编过来看看吧2019-09-09
javascript 文字上下间隔滚动的代码 符合WEB标准 脚本之家修正版
javascript 文字上下间隔滚动的代码 符合WEB标准 脚本之家修正版,这里提供了两个版本,第二个在firefox下运行有些问题大家可以修改下,第一个的高度问题,已经修正,其实就是简单的加了css样式。2009-12-12


最新评论