jquery判断字符串中是否含有

2024年12月02日 21:52
有1个网友回答
网友(1):

var str="我爱中国";
if(str.indexOf("中国")>=0)
{
alert("含有此字符串");
}
else
{
alert("没有此字符串");
}