JS는 JS 배열에 요소가 존재하는지 확인합니다. 이는 PHP 언어의 in_array 함수와 동일합니다.
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=new Array(["b",2,"a",4,"test"]); arr.in_array('test');//判断 test 字符串是否存在于 arr 数组中,存在返回true 否则false,此处将返回true
참고: 이 기능은 문자와 숫자에만 유효합니다
jQuery에도 비슷한 기능이 있습니다: http://docs.jquery.com/Utilities/jQuery.inArray
코드는 다음과 같습니다.
function inArray(needle, haystack) { var length = haystack.length; for(var i = 0; i < length; i++) { if(haystack[i] == needle) return true; } return false; }
위 내용은 이 글에서 공유한 모든 내용입니다. 마음에 드셨으면 좋겠습니다.