赞
踩
var str = "abc"; if(/^[a-zA-Z]*$/.test(str)) { alert("“" + str + "”里全是字母!"); } else if(/^[\u4e00-\u9fa5]*$/.test(str)) { alert("“" + str + "”里全是汉字!"); }