js实现php inarray效果

	function inArray(needle,array,bool){
		if(typeof needle=="string"||typeof needle=="number"){
		    var len=array.length;
			for(var i=0;i<len;i++){
				if(needle===array[i]){
					if(bool){
						return i;
					}
					return true;
				}
			}
			return false;
		}
	}

你可能感兴趣的:(js实现php inarray效果)