例
返回的第一個字符的Unicode字符串中(為“H”的Unicode值):
var str = "HELLO WORLD";
var n = str.charCodeAt(0);
n的結果將是:
試一試» 更多“試一試”的例子。
定義和用法
該charCodeAt()方法在一個字符串指定索引處返回字符的Unicode。
第一個字符的索引是0,第二個字符1,依此類推。
提示:您可以使用charCodeAt()一起使用方法length屬性在一個字符串返回的最後一個字符的Unicode。 的最後一個字符的索引是-1時,第二最後一個字符是-2,等等(見下文實施例)。
提示:有關Unicode字符集的更多信息,請訪問我們的HTML字符集的參考 。
瀏覽器支持
方法 | |||||
---|---|---|---|---|---|
charCodeAt() | 是 | 是 | 是 | 是 | 是 |
句法
string.charCodeAt( index )
參數值
Parameter | Description |
---|---|
index | Required. A number representing the index of the character you want to return |
技術細節
返回值: | 一個數字,表示字符的指定索引處的Unicode的。 注:此方法返回“南”如果沒有字符指定索引,或者如果該指數低於“0”。 |
---|---|
JavaScript的版本: | 1.2 |
更多示例
例
返回的最後一個字符的Unicode字符串中(Unicode值的“D”):
var str = "HELLO WORLD";
var n = str.charCodeAt(str.length-1);
n的結果將是:
試一試» JavaScript的字符串引用