js string indexOf
时间: 2023-08-25 13:18:07 浏览: 130
js中indexof的用法详细解析
5星 · 资源好评率100%
`indexOf` 是 JavaScript 字符串对象的一个方法,用于返回指定子字符串在原字符串中首次出现的位置索引。如果未找到子字符串,则返回 -1。
使用方法如下:
```javascript
const str = "Hello, world!";
const substr = "world";
const index = str.indexOf(substr);
console.log(index); // 输出 7
```
在上面的例子中,`indexOf` 方法返回了子字符串 "world" 在原字符串 "Hello, world!" 中首次出现的位置索引,即 7。如果要检索的子字符串不存在,则返回 -1。
阅读全文