1、描述
charat()
是一种从指定索引中返回字符的方法。
字符串中的字符从左到右索引。 第一个字符的索引为0,并且字符串中的最后一个字符的索引称为stringName
,是stringName.length – 1
。
2、语法
使用以下语法查找特定索引处的字符。
string.charAt(index);
3、参数
index: 0
到1
之间的整数小于字符串的长度。
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