如果句子包含字符串

这个问题在这里已经有了答案:

  • 如何检查一个字符串是否包含JavaScript中的子字符串? 49个答案

  • 你正在寻找的方法是indexOf (Documentation)。 尝试以下操作

    if (sentence.indexOf('Hello World') >= 0) { 
      alert('Yes');
    } else { 
      alert('No');
    }
    

    试试这个:

    if (sentence.indexOf("Hello World") != -1)
    {
        alert("Yes");
    }
    else
    {
        alert("No");
    }
    
    链接地址: http://www.djcxy.com/p/2049.html

    上一篇: if sentence contains string

    下一篇: what is the best way to check if a string exists in another?