我們先來看一下charAt函數(shù)的基本語法
character = str.charAt(index)
charAt函數(shù)的唯一參數(shù)是字符串中的index,從中提取單個字符。此索引的范圍介于0和length - 1之間,包括限制。如果未指定索引,則返回字符串的第一個字符,因為0是用于此函數(shù)的默認索引。
函數(shù)返回位于指定為函數(shù)參數(shù)的索引處的單個字符。如果索引超出范圍,則此函數(shù)返回空字符串。
下面我們就來看看下charAt函數(shù)具體的示例
代碼如下
!DOCTYPE html>
html>
head>
title>/title>
/head>
body>
script>
function func() {
var str = 'JavaScript is object oriented language';
var value = str.charAt(9);
document.write(value);
}
func();
/script>
/body>
/html>
輸出結(jié)果如下:t
以上內(nèi)容很簡單,感謝大家的閱讀和對腳本之家的支持。
您可能感興趣的文章:- PHP定時備份MySQL與mysqldump語法參數(shù)詳解
- MySQL PHP 語法詳解及實例代碼
- MySQL啟動連接的命令以及與PHP程序連接的基本語法