웹프로그래밍

Global It Leader!!


jQuery


 
 

한글 4글자 미만 입력 가능하게

페이지 정보

작성자 no_profile 오원장 쪽지보내기 메일보내기 자기소개 아이디로 검색 전체게시물 댓글 0건 조회 5,611회 작성일 11-05-26 22:20

본문

<form onsubmit="return fwrite_submit(this);">
<input type="text" name=wr_subject id="wr_subject" itemname="회사명" required maxlength="120" size="120">
</form>
<script language="JavaScript" type="text/JavaScript">
function fwrite_submit(f)
{
  //글자수 검사
 if( f.wr_subject.value.length<4) {
    alert("정확한 값을 입력하세요");
    f.wr_subject.focus();
    return false;
 }

  // 한글 여부
     for (i = 0 ; i < f.wr_subject.value.length ; i++){
       var code = f.wr_subject.value.charCodeAt(i);
       var ch = f.wr_subject.value.substr(i,1).toUpperCase();
       
       code = parseInt(code);

    //한글인지 검사  
       if((ch < "0" || ch > "9")&&(ch < "A" || ch > "Z")&&((code > 255) || (code <0))) {
    }
    else {
         alert('한글만 입력 가능합니다.');
         f.wr_subject.focus();
         return false;
    }
     }
}
</script>

댓글목록

등록된 댓글이 없습니다.

전체 142
게시물 검색
jQuery 목록
번호 제목 글쓴이 조회 날짜
22 no_profile 오원장 쪽지보내기 메일보내기 자기소개 아이디로 검색 전체게시물 6738 07-26
21 no_profile 오원장 쪽지보내기 메일보내기 자기소개 아이디로 검색 전체게시물 5078 07-26
20 no_profile 오원장 쪽지보내기 메일보내기 자기소개 아이디로 검색 전체게시물 6310 06-14
19 no_profile 오원장 쪽지보내기 메일보내기 자기소개 아이디로 검색 전체게시물 5911 06-13
18 no_profile 오원장 쪽지보내기 메일보내기 자기소개 아이디로 검색 전체게시물 6057 06-09
17 no_profile 오원장 쪽지보내기 메일보내기 자기소개 아이디로 검색 전체게시물 6453 06-01
16 no_profile 오원장 쪽지보내기 메일보내기 자기소개 아이디로 검색 전체게시물 6089 05-30
열람중 no_profile 오원장 쪽지보내기 메일보내기 자기소개 아이디로 검색 전체게시물 5612 05-26
14 no_profile 오원장 쪽지보내기 메일보내기 자기소개 아이디로 검색 전체게시물 5703 05-13
13 no_profile 오원장 쪽지보내기 메일보내기 자기소개 아이디로 검색 전체게시물 6229 05-13
12 no_profile 오원장 쪽지보내기 메일보내기 자기소개 아이디로 검색 전체게시물 7640 05-07
11 no_profile 오원장 쪽지보내기 메일보내기 자기소개 아이디로 검색 전체게시물 6306 05-03
10 no_profile 오원장 쪽지보내기 메일보내기 자기소개 아이디로 검색 전체게시물 6866 04-29
9 no_profile 오원장 쪽지보내기 메일보내기 자기소개 아이디로 검색 전체게시물 6321 04-05
8 no_profile 오원장 쪽지보내기 메일보내기 자기소개 아이디로 검색 전체게시물 6278 12-16
7 no_profile 오원장 쪽지보내기 메일보내기 자기소개 아이디로 검색 전체게시물 6933 11-10
6 no_profile 오원장 쪽지보내기 메일보내기 자기소개 아이디로 검색 전체게시물 6330 10-03
5 no_profile 오원장 쪽지보내기 메일보내기 자기소개 아이디로 검색 전체게시물 8060 08-28
4 no_profile 오원장 쪽지보내기 메일보내기 자기소개 아이디로 검색 전체게시물 8383 06-15
3 no_profile 오원장 쪽지보내기 메일보내기 자기소개 아이디로 검색 전체게시물 6805 05-10