startsWith() 方法
查看字符串是否为 "Hello" 开头:
var str = "Hello world, welcome to the Runoob.";
var n = str.startsWith("Hello");
startsWith() 方法用于检测字符串是否以指定的子字符串开始。
如果是以指定的子字符串开头返回 true,否则 false。
startsWith() 方法对大小写敏感。
语法
string.startsWith(searchvalue, start)
| 参数 | 描述 |
|---|---|
| searchvalue | 必需,要查找的字符串。 |
| start | 可选,查找的开始位置,默认为 0。 |
浙公网安备 33010602011771号