通过下拉复选框控制其他筛选组件是否显示,JS中直接用==判断参数值在多选情况下有问题,请问有类似find函数这种判断某个字符串在数组中的吗?要怎么写进行判断。
JS根据条件显示参数控件
if (str.indexOf(substr) !== -1) {
console.log(`${substr} is included in the string.`);
} else {
console.log(`${substr} is not included in the string.`);
}