检查字符串是否以 "world" 结尾:
let text = "Hello world";
let result = text.endsWith("world");
亲自试一试 »
let text = "Hello World";
let result = text.endsWith("world");
亲自试一试 »
下面有更多示例。
这个endsWith()
方法返回true
如果字符串以指定字符串结尾。
否则返回false
。
这个endsWith()
方法区分大小写。
string.endsWith(
searchvalue,
length)
Parameter | Description |
searchvalue | Required. The string to search for. |
length | Optional. The length of the string to search. Default value is the length of the string. |
类型 | 描述 |
一个布尔值 | true 如果字符串以值结尾,否则false 。 |
检查字符串的前 11 个字符是否以 "world" 结尾:
let text = "Hello world, welcome to the universe.";
text.endsWith("world", 11);
亲自试一试 »
endsWith()
是 ECMAScript6 (ES6) 功能。
所有现代浏览器都支持 ES6 (JavaScript 2015):
Chrome | Edge | Firefox | Safari | Opera |
Yes | Yes | Yes | Yes | Yes |
endsWith()
Internet Explorer 11(或更早版本)不支持。
截取页面反馈部分,让我们更快修复内容!也可以直接跳过填写反馈内容!