JavaScript charCodeAt() 方法
實例
返回字符串第一個字符的 Unicode 編碼:
var str = "HELLO WORLD";
var n = str.charCodeAt(0);
var n = str.charCodeAt(0);
n 輸出結(jié)果:
var str="HELLO WORLD";
document.write(str.charCodeAt(0));
嘗試一下 ?
定義和用法
charCodeAt() 方法可返回指定位置的字符的 Unicode 編碼。
字符串中第一個字符的位置為 0, 第二個字符位置為 1,以此類推。
瀏覽器支持
所有主要瀏覽器都支持 charCodeAt() 方法
語法
string.charCodeAt(index)
參數(shù)值
參數(shù) | 描述 |
---|---|
index | 必需。表示字符串中某個位置的數(shù)字,即字符在字符串中的下標(biāo)。 |
返回值
類型 | 描述 |
---|---|
Number | 返回在指定的位置的字符的 Unicode 編碼。 |
技術(shù)細節(jié)
JavaScript 版本: | 1.2 |
---|
更多實例
實例
返回字符串中最后一個字符的 Unicode 編碼:
var str = "HELLO WORLD";
var n = str.charCodeAt(str.length-1);
var n = str.charCodeAt(str.length-1);
n 輸出結(jié)果:
var str="HELLO WORLD";
document.write(str.charCodeAt(str.length-1));
嘗試一下 ?
更多建議: