首页 > 语言 > JavaScript > 正文

简介JavaScript中charAt()方法的使用

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

这篇文章主要介绍了JavaScript中charAt()方法的使用详解,是JS入门学习中的基础知识,需要的朋友可以参考下

这个方法返回从指定索引的字符。

字符串中的字符进行索引从左向右。第一个字符的索引是0,并且在一个叫 stringName字符串的最后一个字符的索引是stringName.length- 1。

语法

 

 
  1. string.charAt(index); 

下面是参数的详细信息:

index: 介于0和1比串的长度以下的整数。

返回值:

返回从指定索引的字符。

例子:

 

 
  1. <html> 
  2. <head> 
  3. <title>JavaScript String charAt() Method</title> 
  4. </head> 
  5. <body> 
  6. <script type="text/javascript"
  7. var str = new String( "This is string" ); 
  8. document.writeln("str.charAt(0) is:" + str.charAt(0));  
  9. document.writeln("<br />str.charAt(1) is:" + str.charAt(1));  
  10. document.writeln("<br />str.charAt(2) is:" + str.charAt(2));  
  11. document.writeln("<br />str.charAt(3) is:" + str.charAt(3));  
  12. document.writeln("<br />str.charAt(4) is:" + str.charAt(4));  
  13. document.writeln("<br />str.charAt(5) is:" + str.charAt(5));  
  14. </script> 
  15. </body> 
  16. </html> 

这将产生以下结果:

 

 
  1. str.charAt(0) is:T  
  2. str.charAt(1) is:h  
  3. str.charAt(2) is:i  
  4. str.charAt(3) is:s  
  5. str.charAt(4) is:  
  6. str.charAt(5) is:i  

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

图片精选