Jquery if / else是否有1个单词

时间:2014-04-13 17:24:22

标签: jquery if-statement

我需要验证一个var,如果这个var有一个我需要的单词(不是整个var),请给我一个回调。

示例:

var text = "Tell the world i'm coming home.";

if(text == "world")
{
 alert("Ok!");
}
else
{
 alert("Nothing!");
}
嗯,想法?

1 个答案:

答案 0 :(得分:0)

我相信你在询问子串的发生:

if(text.indexOf("world") != -1){
  alert("Ok!");
}
else
{
  alert("Nothing!");
}