charAt(index) 返回指定索引位置的字符 charCodeAt() 返回指定索引位置字符的 Unicode 值 indexOf(searchString, startIndex) 返回子字符串第一次出现的位置,从startIndex开始查找,找不到时返回-1 lastIndexOf(searchString, startIndex) 从由往左找子字符串,找不到时返回-1 substring(start, end) 截取字符串,两个参数都为正数,end可选,截取结束位置 substr(s…