如何在JavaScript中执行不区分大小写的字符串比较?
最简单的方法(如果您不担心特殊的Unicode字符)是调用toUpperCase:
toUpperCase
var areEqual = string1.toUpperCase() === string2.toUpperCase();