js includes方法
时间: 2023-10-12 21:03:07 浏览: 215
在JavaScript中,includes()方法是一种字符串方法,用于确定一个字符串中是否包含另一个子字符串。该方法的语法是:string.includes(substring [, start_position])。其中,string是要搜索的原始字符串,substring是要搜索的子字符串,start_position是可选参数,表示从哪个位置开始搜索子字符串。
举个例子,如果我们有一个字符串变量totn_string等于'TechOnTheNet',我们可以使用includes()方法来检查这个字符串中是否包含特定的子字符串。例如,我们可以使用以下代码来检查totn_string中是否包含子字符串'The':
var totn_string = 'TechOnTheNet';
console.log(totn_string.includes('The')); //输出true。<span class="em">1</span><span class="em">2</span><span class="em">3</span>
#### 引用[.reference_title]
- *1* *2* *3* [JavaScript includes() 方法](https://blog.csdn.net/wuxiaopengnihao1/article/details/126941955)[target="_blank" data-report-click={"spm":"1018.2226.3001.9630","extra":{"utm_source":"vip_chatgpt_common_search_pc_result","utm_medium":"distribute.pc_search_result.none-task-cask-2~all~insert_cask~default-1-null.142^v92^chatsearchT0_1"}}] [.reference_item style="max-width: 100%"]
[ .reference_list ]
阅读全文