charAt() Prototype charCodeAt() charAt()是一个从指定索引返回字符的方法。字符串中的字符从左到右编制索引。第一个字符的索引是0,字符串中最后一个字符的索引(称为stringName)是stringName.length - 1。 语法 string.charAt(index); 详细参数 index - 小于字符串长度的0到1之间的整数。 返回值 返回指定索引中的字符。 例 var str = new String("This is string"); console.log("str.charAt(0) is:" + str.charAt(0)); console.log("str.charAt(1) is:" + str.charAt(1)); console.log("str.charAt(2) is:" + str.charAt(2)); console.log("str.charAt(3) is:" + str.charAt(3)); console.log("str.charAt(4) is:" + str.charAt(4)); console.log("str.charAt(5) is:" + str.charAt(5)); 输出 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 Prototype charCodeAt()