可能重复:
Check if text is in a string
JavaScript: string contains
我正在尝试检查我导入到我的应用程序中的字符串是否有某段文字。我知道如何用jQuery做到这一点,但我如何用直接的JavaScript做到这一点?
答案 0 :(得分:256)
在这里: ES5
var test = 'Hello World';
if( test.indexOf('World') >= 0){
// Found world
}
使用 ES6 最好的方法是使用includes
函数来测试字符串是否包含外观工作。
const test = 'Hello World';
if (test.includes('World')) {
// Found world
}