这个问题在这里已经有一个答案:>
How to check whether a string contains a substring in JavaScript?45
如果一个句子包含“Hello World”(没有引号),那么我需要返回true并执行某些操作.可能的句子可能是这样的:
如果一个句子包含“Hello World”(没有引号),那么我需要返回true并执行某些操作.可能的句子可能是这样的:
var sentence = "This is my Hello World and I like widgets." var sentence = "Hello World - the beginning of all" var sentence = "Welcome to Hello World" if ( sentence.contains('Hello World') ){ alert('Yes'); } else { alert('No'); }
我知道.contains不起作用,所以我正在寻找一些有用的东西.正则表达式是这里的敌人.
解决方法
您要查找的方法是indexOf(
Documentation).尝试以下
if (sentence.indexOf('Hello World') >= 0) { alert('Yes'); } else { alert('No'); }