js怎么判断字符串中是否含有某个字符如果是简单判断可以用indexOf方法:var str = 'abcdef'str.indexOf('b') 返回1str.indexOf('h') 返回-1下面这个2023-04-22JavaScript210