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)
参数
参数 | 描述 |
searchvalue | 必需的。 要搜索的字符串。 |
start | 可选的。 要开始的位置。 默认值为 0。 |
返回值
类型 | 描述 |
布尔值。 | 如果字符串包含该值,则为 true ,否则为 false 。 |
更多示例
从位置 12 开始
let text = "Hello world, welcome to the universe.";
let result = text.includes("world", 12);
自己试试 »
浏览器支持
includes()
是 ECMAScript6 (ES6) 的特性。
ES6 (JavaScript 2015) 自 2017 年 6 月起在所有现代浏览器中都受支持
Chrome 51 | Edge 15 | Firefox 54 | Safari 10 | Opera 38 |
2016 年 5 月 | 2017 年 4 月 | 2017 年 6 月 | 2016 年 9 月 | 2016 年 6 月 |
includes()
不受 Internet Explorer 支持。