检查字符串是否包含"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(或更早版本)不支持。
截取页面反馈部分,让我们更快修复内容!也可以直接跳过填写反馈内容!