欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

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

程序员文章站 2023-11-06 13:15:52
 这个方法返回从指定索引的字符。 字符串中的字符进行索引从左向右。第一个字符的索引是0,并且在一个叫 stringname字符串的最后一个字符的索引是strin...

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

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

string.charat(index);

下面是参数的详细信息:

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

返回值:

返回从指定索引的字符。
例子:

<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