前端js判斷字符串是否包含1或2?
var str = "hello 1";
if(str.indexOf("1") !== -1){
alert("exist");
}
var str = "hello 2";
if(str.includes("2")){
alert("exist");
}
前端js判斷字符串是否包含1或2?
var str = "hello 1";
if(str.indexOf("1") !== -1){
alert("exist");
}
var str = "hello 2";
if(str.includes("2")){
alert("exist");
}