startsWith()方法確定字符串,是否以指定字符串的字符開頭。
如果字符串以字符開頭,則startsWith()方法返回true,否則返回false。
注意:此方法區(qū)分大小寫。
string.startsWith(searchValue, position)
表格中的數(shù)字指定了完全支持startsWith()方法的第一個瀏覽器版本:
Method | ![]() | ![]() | ![]() | ![]() | ![]() |
startsWith() | 41 | 17 | 28 | 9 | 12 |
參數(shù) | 描述 |
---|---|
searchValue | (必需)此字符串開頭要搜索的字符 |
position | (可選)此字符串中開始搜索searchValue的位置;默認(rèn)為0 |
返回值: | 如果在字符串的開頭找到給定的字符,則為true;否則為false。 |
---|---|
JavaScript版本: | ECMAScript 6 |
檢查字符串是否以“Pollution”開頭,從位置4開始搜索:
var str = 'Air Pollution is introduction of chemicals to the atmosphere.'; str.startsWith('Pollution', 4);測試看看?/?