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

2024年11月15日 08:51
有2个网友回答
网友(1):

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

网友(2):

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