常用函数
字符串分割为数组split(',');
shopId.split(',');
字符串是否存在数组中
indexOf arr.indexOf(val)使用原生的方法判断val首次在arr中出现的下标,不存在返回-1
indexOf 存在则返回下标
字符串分割为数组split(',');
shopId.split(',');
字符串是否存在数组中
indexOf arr.indexOf(val)使用原生的方法判断val首次在arr中出现的下标,不存在返回-1
indexOf 存在则返回下标