javascript 中ASCII字符值转换时间:2023-03-09 20:30:32 char-->ascii var a = "123"; a.charAt(1).charCodeAt();ascii-->char String.fromCharCode(10);