本文介绍了检查字符串是否包含某段文本的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

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

I'm trying to check if a string I import into my application has a certain piece of text. I know how to do this with jQuery, but how do I do it with straight up JavaScript?

推荐答案

你走了: ES5

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

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

With ES6 best way would be to use includes function to test if the string contains the looking work.

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

这篇关于检查字符串是否包含某段文本的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

10-10 04:47