JS 判断数组中是否存在某字符串
程序员文章站
2022-07-13 17:27:32
...
//判断数组中是否存在某字符串
Array.prototype.S=String.fromCharCode(2);
Array.prototype.in_array=function(e){
var r=new RegExp(this.S+e+this.S);
return (r.test(this.S+this.join(this.S)+this.S));
};
用法:
var arr = ['a','b','c'];
arr.in_array("a");//返回值为true或false。存在为true,不存在为false。
上一篇: js控制Backspace 回退 backspace
下一篇: JS 判断数组中是否存在某字符串