jQuery.inArray(val,arr,[from])
最后更新于:2022-04-01 05:58:30
### 返回值:NumberjQuery.inArray(value,array,[fromIndex])
### 概述
确定第一个参数在数组中的位置,从0开始计数(如果没有找到则返回 -1 )。
### 参数
#### **value,array,[fromIndex]**Any,Array,Number*V1.2*
**value**:用于在数组中查找是否存在
**array**:待处理数组。
**fromIndex**:用来搜索数组队列,默认值为0。
#### **array**Array
待处理数组。
### 示例
#### 描述:
查看对应元素的位置
##### jQuery 代码:
~~~
var arr = [ 4, "Pete", 8, "John" ];
jQuery.inArray("John", arr); //3
jQuery.inArray(4, arr); //0
jQuery.inArray("David", arr); //-1
jQuery.inArray("Pete", arr, 2); //-1
~~~