我正在尝试检查我导入到我的应用程序中的字符串是否有特定的文本。我知道如何使用 jQuery 来做到这一点,但是我如何使用直接的 JavaScript 来做到这一点?
给你: ES5
var test = 'Hello World'; if( test.indexOf('World') >= 0){ // Found world }
使用 ES6 最好的方法是使用includes函数来测试字符串是否包含看起来的工作。
includes
const test = 'Hello World'; if (test.includes('World')) { // Found world }