웹프로그래밍

Global It Leader!!


jQuery


 
 

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

페이지 정보

작성자 no_profile 오원장 쪽지보내기 메일보내기 자기소개 아이디로 검색 전체게시물 댓글 0건 조회 5,599회 작성일 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 목록
번호 제목 글쓴이 조회 날짜
122 no_profile 오원장 쪽지보내기 메일보내기 자기소개 아이디로 검색 전체게시물 6045 06-09
121 no_profile 오원장 쪽지보내기 메일보내기 자기소개 아이디로 검색 전체게시물 5995 06-13
120 no_profile 오원장 쪽지보내기 메일보내기 자기소개 아이디로 검색 전체게시물 5900 06-13
119 no_profile 오원장 쪽지보내기 메일보내기 자기소개 아이디로 검색 전체게시물 5782 04-24
118 no_profile 오원장 쪽지보내기 메일보내기 자기소개 아이디로 검색 전체게시물 5693 05-13
열람중 no_profile 오원장 쪽지보내기 메일보내기 자기소개 아이디로 검색 전체게시물 5600 05-26
116 no_profile 오원장 쪽지보내기 메일보내기 자기소개 아이디로 검색 전체게시물 5525 08-21
115 no_profile 오원장 쪽지보내기 메일보내기 자기소개 아이디로 검색 전체게시물 5500 04-24
114 no_profile 오원장 쪽지보내기 메일보내기 자기소개 아이디로 검색 전체게시물 5491 08-27
113 no_profile 오원장 쪽지보내기 메일보내기 자기소개 아이디로 검색 전체게시물 5330 04-28
112 no_profile 오원장 쪽지보내기 메일보내기 자기소개 아이디로 검색 전체게시물 5323 03-09
111 no_profile 오원장 쪽지보내기 메일보내기 자기소개 아이디로 검색 전체게시물 5274 03-15
110 no_profile 오원장 쪽지보내기 메일보내기 자기소개 아이디로 검색 전체게시물 5085 07-11
109 no_profile 오원장 쪽지보내기 메일보내기 자기소개 아이디로 검색 전체게시물 5070 02-29
108 no_profile 오원장 쪽지보내기 메일보내기 자기소개 아이디로 검색 전체게시물 5066 07-26
107 no_profile 오원장 쪽지보내기 메일보내기 자기소개 아이디로 검색 전체게시물 4985 02-28
106 no_profile 오원장 쪽지보내기 메일보내기 자기소개 아이디로 검색 전체게시물 4922 02-29
105 no_profile 오원장 쪽지보내기 메일보내기 자기소개 아이디로 검색 전체게시물 4887 11-23
104 no_profile 오원장 쪽지보내기 메일보내기 자기소개 아이디로 검색 전체게시물 4885 04-24
103 no_profile 오원장 쪽지보내기 메일보내기 자기소개 아이디로 검색 전체게시물 4876 08-21