String对象允许你处理一系列字符;它用许多辅助方法包装Javascript的字符串原始数据类型。当JavaScript在字符串原语和字符串对象之间自动转换时,可以在字符串原语上调用string对象的任何辅助方法。本文主要介绍JavaScript(JS) string.charAt(index) 方法。

1、描述

charat()是一种从指定索引中返回字符的方法。

字符串中的字符从左到右索引。 第一个字符的索引为0,并且字符串中的最后一个字符的索引称为stringName,是stringName.length – 1

2、语法

使用以下语法查找特定索引处的字符。

string.charAt(index);

3、参数

index 01之间的整数小于字符串的长度。

4、返回值

返回指定索引中的字符。

5、使用示例

<html>
   <head>
      <title>JavaScript String charAt() Method</title>
   </head>
   
   <body>  
      <script type = "text/javascript">
         var str = new String( "This is string" );
         document.writeln("str.charAt(0) is:" + str.charAt(0)); 
         document.writeln("<br />str.charAt(1) is:" + str.charAt(1)); 
         document.writeln("<br />str.charAt(2) is:" + str.charAt(2)); 
         document.writeln("<br />str.charAt(3) is:" + str.charAt(3)); 
         document.writeln("<br />str.charAt(4) is:" + str.charAt(4)); 
         document.writeln("<br />str.charAt(5) is:" + str.charAt(5)); 
      </script>      
   </body>
</html>

6、输出

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

推荐文档