includes()方法判斷一個(gè)字符串是否可以在另一個(gè)字符串中找到。
如果字符串包含字符,includes()方法將返回true,否則返回false。
注意:此方法區(qū)分大小寫(xiě)。
string.includes(searchValue, start)
var str = 'Air Pollution is introduction of chemicals to the atmosphere'; str.includes('Pollution'); // true測(cè)試看看?/?
表格中的數(shù)字指定了完全支持include()方法的第一個(gè)瀏覽器版本:
方法 | ![]() | ![]() | ![]() | ![]() | ![]() |
includes() | 41 | 40 | 是 | 9 | 12 |
參數(shù) | 描述 |
---|---|
searchValue | (必需)在此字符串中搜索的字符串 |
start | (可選)字符串中開(kāi)始搜索searchValue的位置(默認(rèn)為0) |
返回值: | 如果在給定字符串內(nèi)的任何位置找到搜索字符串,則為true;否則為false |
---|---|
JavaScript版本: | ECMAScript 6 |
檢查字符串是否包含"Air",從位置2開(kāi)始搜索:
var str = 'Air Pollution is introduction of chemicals to the atmosphere'; str.includes('Air', 2); // false測(cè)試看看?/?