Array.prototype.contains = function ( needle ) {
for (var i in this) { // Loop through every item in array
if (this[i] == needle) return true; // return true if current item == needle
}
return false;
}
然后你可以使用下面的代码在数组x中搜索
if (x.contains('searchedString')) {
// do a
}
else
{
// do b
}