第一种办法: ES6语法
contains()
判断一个字符串中是否包含某个字符串
startsWith()
判断一个字符串中是否以某个字符串开始
endsWith()
判断一个字符串中是否以某个字符串结尾
var s = "hello world!";
s.starsWith("hello"); //true
s.endWith("!"); //true
s.contains("o"); //true
第二种办法: 使用indexof
const str = "测试一个字符串111是否包含另外一个字符串";
if (str.indexOf("111") >= 0) {
alert('字符串中包含111字符串');
} else {
alert('字符串中 不包含111字符串');
}