$.inArray()查找元素在数组中的索引值
$.inArray() : 在数组中查找指定值并返回它的索引(如果没有找到,则返回-1)。语法格式为jQuery.inArray( value, array [, fromIndex ] )
。
var arr = [1,2,"Tom","Marry"];
var index = $.inArray(2,arr);
console.log(index);
//1
index = $.inArray("Tom",arr);
console.log(index);
//2
//这里传入了第三个参数formIndex,数组索引值,表示从哪里在开始查找。默认值是0,这将查找整个数组。这里会从数组索引值为3的位置查找“Tom”
index = $.inArray("Tom",arr,3);
console.log(index);
//-1