js中如何验证一个字符是否为大写字母,不用正则表达式function allCaps(text){for(var i=0i<text.lengthi++){var c=text.charAt(i)if(c<'A' || c>&2023-04-17JavaScript260