/** * 控制文本框值长度 * obj 文本框对象 * len 数据库该字段的长度 * */ function checkTextLength(obj, len) { var str = obj.value; var strLength = 0; for ( var i = 0; i < str.length; i++) { if (str.charCodeAt(i) < 27 || str.charCodeAt(i) > 126) { strLength += 3; } else { strLength++; } } if (strLength > len) { obj.value = cutString(obj.value, len); showMsg("您输入的字符已超过最大数"); } }