startsWith()方法确定字符串,是否以指定字符串的字符开头。
如果字符串以字符开头,则startsWith()方法返回true,否则返回false。
注意:此方法区分大小写。
string.startsWith(searchValue, position)
var str = 'WWW.nhooo.Com'; str.startsWith('W.n') // true测试看看‹/›
表格中的数字指定了完全支持startsWith()方法的第一个浏览器版本:
Method | |||||
startsWith() | 41 | 17 | 28 | 9 | 12 |
参数 | 描述 |
---|---|
searchValue | (必需)此字符串开头要搜索的字符 |
position | (可选)此字符串中开始搜索searchValue的位置;默认为0 |
返回值: | 如果在字符串的开头找到给定的字符,则为true;否则为false。 |
---|---|
JavaScript版本: | ECMAScript 6 |
检查字符串是否以“Pollution”开头,从位置4开始搜索:
var str = 'Air Pollution is introduction of chemicals to the atmosphere.'; str.startsWith('Pollution', 4);测试看看‹/›