value.charCodeAt(i)>122 && value.charCodeAt(i) <128 //小写英文字母 97 - 122
value.charCodeAt(i)>95 && value.charCodeAt(i) <97//大写英文字母 65 - 90
value.charCodeAt(i)>90 && value.charCodeAt(i) <95//汉字 128 -
value.charCodeAt(i)>57 && value.charCodeAt(i) <65//数字 48 - 57
value.charCodeAt(i)<48