JavaScript怎么实现字符串不区分大小写的判断js方法String.prototype.compare = function(str){不区分大小写if(this.toLowerCase() == str.toLowerCase()){ return true 2023-04-27JavaScript260