摘要: 循环打印26英文字符 str="A"; code = str.charCodeAt();//65 str2 = String.fromCharCode(code);//A str3 = String.fromCharCode(0x60+26);//Z 阅读全文