目录

JavaScript String includes()

示例

检查字符串是否包含"world":

let text = "Hello world, welcome to the universe.";
let result = text.includes("world");
亲自试一试 »

下面有更多示例。


描述

这个includes()方法返回true如果一个字符串包含指定的字符串。

否则返回false

这个includes()方法区分大小写。


语法

string.includes( searchvalue, start)

参数

Parameter Description
searchvalue Required.
The string to search for.
start Optional.
The position to start from.
Default value is 0.

返回值

类型 描述
一个布尔值。 true如果字符串包含该值,否则false


更多示例

从位置 12 开始:

let text = "Hello world, welcome to the universe.";
let result = text.includes("world", 12);
亲自试一试 »

浏览器支持

includes()是 ECMAScript6 (ES6) 功能。

所有现代浏览器都支持 ES6 (JavaScript 2015):

Chrome Edge Firefox Safari Opera
Yes Yes Yes Yes Yes

includes()Internet Explorer 11(或更早版本)不支持。