1、正确获取字符串长度(包括码点大于0xFFFF的Unicode字符)
0xFFFF
function codePointLength(text) { var result = text.match(/[sS]/gu); return result ? result.length : 0; }