js中怎样判断一个字符串等于另一个字符串

2024-11-15 08:51:33
推荐回答(2个)
回答(1):

比如indexOf()方法,注意O是大写。
var test="this is a test";
if(test.indexOf("test")!=-1){
//不等于-1表示该字符串包含子字符串。
}

回答(2):

if (str1 == str2){}
str1和str2表示字符串