首页 > 语言 > JavaScript > 正文

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

2024-05-06 16:21:30
字体:
来源:转载
供稿:网友

这篇文章主要介绍了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. <html> 
  2. <head> 
  3. <title>JavaScript String charCodeAt() Method</title> 
  4. </head> 
  5. <body> 
  6. <script type="text/javascript"
  7. var str = new String( "This is string" ); 
  8. document.write("str.charCodeAt(0) is:" + str.charCodeAt(0));  
  9. document.write("<br />str.charCodeAt(1) is:" + str.charCodeAt(1));  
  10. document.write("<br />str.charCodeAt(2) is:" + str.charCodeAt(2));  
  11. document.write("<br />str.charCodeAt(3) is:" + str.charCodeAt(3));  
  12. document.write("<br />str.charCodeAt(4) is:" + str.charCodeAt(4));  
  13. document.write("<br />str.charCodeAt(5) is:" + str.charCodeAt(5));  
  14. </script> 
  15. </body> 
  16. </html> 

这将产生以下结果:

 

 
  1. str.charCodeAt(0) is:84 
  2. str.charCodeAt(1) is:104 
  3. str.charCodeAt(2) is:105 
  4. str.charCodeAt(3) is:115 
  5. str.charCodeAt(4) is:32 
  6. str.charCodeAt(5) is:105  

发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表

图片精选