JavaScript String-charCodeAt()方法
时间:2019-08-20 13:50:46 来源:igfitidea点击:
说明
此方法返回给定索引处字符的Unicode数值。
Unicode码位的范围从0到1114111. 前128个Unicode码位是ASCII字符编码的直接匹配。charCodeAt()始终返回小于65536的值。
语法
使用以下语法在特定索引处查找字符代码。
string.charCodeAt(index);
参数
index− 0到(字符串长度-1). 默认值是0
返回值
返回一个数字,该数字指示给定索引处字符的Unicode值。如果给定的索引小于0或者大于等于字符串长度,则返回NaN。
示例
var str = new String('Foo Bar'); console.log(str.charCodeAt(4)); // 返回 66. 66是字符B的ASCII码 console.log(typeof str.charCodeAt(4)); // 返回字符串“number”.