js实现的模拟php中的in_array的方法

发布时间:2019-08-25编辑:脚本学堂
js实现的模拟php中的in_array的方法,有需要的朋友不妨看看。

js实现的模拟php中的in_array的方法,有需要的朋友不妨看看。

in_array

in_array — 检查数组中是否存在某个值
说明
bool in_array ( mixed needle, array haystack [, bool strict] )

在 haystack 中搜索 needle,如果找到则返回 TRUE,否则返回 FALSE。
 

复制代码 代码如下:
function in_array(needle, haystack) {
if(typeof needle == 'string' || typeof needle == 'number') {
for(var i in haystack) {
if(haystack[i] == needle) {
return true;
}
}
}
return false;
}