js是否包含字符串

2024-11-25 19:59:33
推荐回答(2个)
回答1:

//字符串
var str = "12132434ddddftest";
//用indexOf方法判断是否包含test字符串
var iscontaintest = str.indexOf("test")==-1?false:true;

回答2:

可以用indexOf判断,比如
字符串str是否包含abc,可以用 var isHave = (str.indexOf('abc') != -1);