摘要: javascript中ascii碼的應用
1.在javascript中如何求ascii碼對應的成字元?
用String.fromCharCode(n)。例如:String.fromCharCode(92)的值為"\".
2.在javascript中如何求字元對應的ascii碼?
用charCodeAt()。例如:"A".charCodeAt()的值為65
摘要: javascript中ascii碼的應用
1.在javascript中如何求ascii碼對應的成字元?
用String.fromCharCode(n)。例如:String.fromCharCode(92)的值為"\".
2.在javascript中如何求字元對應的ascii碼?
用charCodeAt()。例如:"A".charCodeAt()的值為65