虽然我确实理解javascript和Java是非常不同的编程语言,但我喜欢fromCharCode ()方法,它可以将像65这样的unicode字符转换为A等。在javascript中使用fromCharCode()的示例:function myFunction()var res = String.fromCharCode(83);
do
当我浏览String的文档时,引用了String.fromCharCode。我注意到,它与大多数其他String方法的不同之处在于,它在该方法之前没有.prototype。var str = "foo";var character = String.fromCharCode(code); // This isreference I'm talking about
alert(code); //