내가 자꾸 까먹어서 쓰는 개발 이야기/JavaScript
입력 글자수 제한
function updateChar(length_limit, seq) { var comment=''; comment = eval("document.form1.comment"+seq); var form = document.form1; var length = calculate_msglen(comment.value); document.getElementById("textlimit").innerHTML = length; if (length > length_limit) { alert("최대 " + length_limit + "byte이므로 초과된 글자수는 자동으로 삭제됩니다."); comment.value = comment.value.replace(/\r\n$/, ""); comment.value = assert..
2007. 9. 4. 13:43
최근댓글