[Javascript] 글자수 체크 / 글자수 제한
function chkword(obj, maxByte) { var strValue = obj.value; var strLen = strValue.length; var totalByte = 0; var len = 0; var oneChar = ""; var str2 = ""; for (var i = 0; i 4) { totalByte += 2; } else { totalByte++; } if (totalByte maxByte) { alert(maxByte + "자를 초과 입력 할 수 없습니다."); str2 = strValue.substr(0, len); obj.value..
2016. 6. 10. 11:33