該方法傳回一個數字,表示給定索引處的字元的Unicode值。
Unicode碼點範圍為0到1114111。前128個Unicode碼點的ASCII字元編碼的直接匹配。 charCodeAt()將始終傳回一個值小於65,536。
文法
string.charCodeAt(index);
以下是參數的詳細資訊:
傳回值:
傳回一個數字,表示給定索引處的字元的Unicode值。如果給定的索引不是0和1之間的長度,則回傳NaN。
範例:
<html> <head> <title>JavaScript String charCodeAt() Method</title> </head> <body> <script type="text/javascript"> var str = new String( "This is string" ); document.write("str.charCodeAt(0) is:" + str.charCodeAt(0)); document.write("<br />str.charCodeAt(1) is:" + str.charCodeAt(1)); document.write("<br />str.charCodeAt(2) is:" + str.charCodeAt(2)); document.write("<br />str.charCodeAt(3) is:" + str.charCodeAt(3)); document.write("<br />str.charCodeAt(4) is:" + str.charCodeAt(4)); document.write("<br />str.charCodeAt(5) is:" + str.charCodeAt(5)); </script> </body> </html>
這將產生以下結果:
str.charCodeAt(0) is:84 str.charCodeAt(1) is:104 str.charCodeAt(2) is:105 str.charCodeAt(3) is:115 str.charCodeAt(4) is:32 str.charCodeAt(5) is:105