https://www.cnblogs.com/mmyh/p/6065920.html
var str ="abc";
if(str.indexOf("bc")>-1){
alert('str中包含bc字符串');
}
https://blog.csdn.net/weixin_42869591/article/details/83215144
js,indexOf()查找字符串,返回指定字符串在字符串中首次出现的位置
allStr.indexOf(subStr,index)