获取字符串长度 字符串对象.length
var str='www.jd.com京东商城';//js中中文也占1个字符长度
document.write(str.length+'<br />');//字符串对象名.length获取字符串长度
获取某个位置的字符字符串对象名.charAt('字符')
document.write(str.charAt(8)+'<br />');
获取字符串位置上的Unicode代码 字符串对象.charCodeAt()
document.write(str.charCodeAt(2)+'<br />');
获取一个或者多个Unicode代码对应原生字符串 String.fromCharCode('unicode代码')
document.write(String.fromCharCode(100,120,190));//获取100,120,190的对应原生字符