小编典典

检查一个字符串是否有一段文本

all

我正在尝试检查我导入到我的应用程序中的字符串是否有特定的文本。我知道如何使用 jQuery 来做到这一点,但是我如何使用直接的 JavaScript
来做到这一点?


阅读 56

收藏
2022-05-30

共1个答案

小编典典

给你: ES5

var test = 'Hello World';
if( test.indexOf('World') >= 0){
  // Found world
}

使用 ES6 最好的方法是使用includes函数来测试字符串是否包含看起来的工作。

const test = 'Hello World';
if (test.includes('World')) { 
  // Found world
}
2022-05-30