首頁  >  文章  >  web前端  >  簡介JavaScript中charAt()方法的使用_基礎知識

簡介JavaScript中charAt()方法的使用_基礎知識

WBOY
WBOY原創
2016-05-16 15:56:171919瀏覽

 這個方法傳回從指定索引的字元。

字串中的字元進行索引從左向右。第一個字元的索引是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 

陳述:
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn