JavaScript中数组查询指定内容的位置
时间: 2024-01-21 17:16:17 浏览: 50
JavaScript获取指定元素位置的方法
可以使用`indexOf()`方法来查找数组中指定内容的位置。该方法会返回该元素在数组中第一次出现的索引,如果没有找到则返回-1。
例如,假设有一个数组`arr`,我们想查询其中值为`"apple"`的元素的位置,可以这样写:
```
let arr = ["banana", "orange", "apple", "grape"];
let index = arr.indexOf("apple"); // 返回2
```
如果数组中不存在该元素,则返回-1。例如:
```
let arr = ["banana", "orange", "grape"];
let index = arr.indexOf("apple"); // 返回-1
```
阅读全文