内容目录
charCodeAt()
函数返回一个整数,该整数表示String
对象中指定索引处的字符的Unicode编码。
该函数属于String
对象,所有主流浏览器均支持该函数。
语法
stringObject.charCodeAt( index )
参数
参数 | 描述 |
---|---|
index | Number类型指定的索引,从0开始。 |
返回值
charCodeAt()
方法的返回值为Number类型,其返回值表示字符串对象指定索引处的字符的Unicode编码。
如果指定的索引超出字符串的有效范围,则返回NaN
。
示例&说明
var str = "CodePlayer";
document.writeln( str.charCodeAt( 0 ) ); // 67
document.writeln( str.charCodeAt( 4 ) ); // 80
document.writeln( str.charCodeAt( 12 ) ); // NaN
str = "张三";
document.writeln( str.charCodeAt( 0 ) ); // 24352
0 条评论
撰写评论