萬盛學電腦網

 萬盛學電腦網 >> 腳本專題 >> javascript >> JavaSacript中charCodeAt()方法的使用詳解

JavaSacript中charCodeAt()方法的使用詳解

   這篇文章主要介紹了JavaSacript中charCodeAt()方法的使用詳解,是JS入門學習中的基本知識,需要的朋友可以參考下

  該方法返回一個數字,表示給定索引處的字符的Unicode值。

  Unicode碼點范圍為0到1114111。前128個Unicode碼點的ASCII字符編碼的直接匹配。charCodeAt()將始終返回一個值小於65,536。

  語法

  ?

1 string.charCodeAt(index);

  下面是參數的詳細信息:

  index: 0和1之間小於字符串的長度的整數; 如果未指定,默認為0。

  返回值:

  返回一個數字,表示給定索引處的字符的Unicode值。如果給定的索引不是0和1之間的長度,返回NaN。

  例子:

  ?

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 <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>

  這將產生以下結果:

  ?

1 2 3 4 5 6 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
copyright © 萬盛學電腦網 all rights reserved