1 var arry = [ "C#", "html", "css", "JavaScript" ]; 2 var result= $.inArray("C#", arry); //如果arry数组里面存在"C#" 这个字符串则返回该字符串的数组下标,否则返回(不包含在数组中) -1