欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

js比较或者筛选时不区分大小写的实例解析

程序员文章站 2022-04-24 18:30:19
str.toUpperCase() str转化成大写 str.toLowerCase() str转成小写 例如: product.name.toUpperCase().i...

str.toUpperCase() str转化成大写

str.toLowerCase() str转成小写

例如:

product.name.toUpperCase().indexOf(this.props.filterText.toUpperCase())=== -1

都转化成统一格式就可以进行比较了