分类 js 下的文章

26字母(ASCII码)

A-Z:65-90 a-z:97-122

js输出字母:

A:String.fromCharCode(65);
...
Z:String.fromCharCode(90)