function test(){    
var c="";   
for(var i=1;i<65536;i++){   
if((i%10)==0){   
c+=i+':\t'+String.fromCharCode(i)+'\t'+'\n';}else{   
c+=i+':\t'+String.fromCharCode(i)+'\t';}   
}   
document.write(c);
}   

 

相关文章:

  • 2022-12-23
  • 2021-12-09
  • 2021-10-07
  • 2021-11-16
  • 2022-01-25
  • 2022-02-03
  • 2021-11-21
猜你喜欢
  • 2022-12-23
  • 2021-11-21
  • 2021-07-25
  • 2021-11-21
  • 2021-11-21
  • 2021-12-11
  • 2021-09-11
相关资源
相似解决方案