扫码一下
查看教程更方便
Javascript String charAt 方法 从指定索引返回字符。
字符串中的字符从左到右编入索引。第一个字符的索引为 0,字符串中最后一个字符的索引称为stringName,为 stringName.length – 1。
语法如下:
string.charAt(index);
index - 必需。表示字符串中某个位置的数字,即字符在字符串中的位置。
返回指定索引中的字符。
所有主流浏览器都支持 charAt 方法。
<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>
输出结果:
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