每次写blog的时候都会觉得,博客园的编辑器太差,经常不能加载。
言归正传:
前端方式:String.fromCharCode(K + 64)
K是一个1-36的十进制数字
返回值为A、B……Z
后端方式:
if (1 <= number && 36 >= number)
{
int num = number + 64;
System.Text.ASCIIEncoding asciiEncoding = new System.Text.ASCIIEncoding();
byte[] btNumber = new byte[] {(byte) num};
return asciiEncoding.GetString(btNumber);
}
一点小的整理,希望帮助自己和大家节约时间。