JS生成26个英文字母

var A_Z="";
for(var i=65;i<91;i++)
{
A_Z+=String.fromCharCode(i)+" ";
}
alert(A_Z);

原文地址:https://www.cnblogs.com/dachie/p/2507620.html