메일 주소 검사하기 체크박스 입니다.

· 10년 전 · 217

function Chk_Email(type) {
 
 var obj_email = document.form.email;
 var struserid = document.form.userid;
 var mailcheck = document.form.mailcheck;
 var tail
   
 if(mailcheck.checked){
  tail = "@kma.or.kr";
        if(struserid.value != ""){
            obj_email.value = struserid.value + tail;
        }else{
            alert('아이디를 입력해주세요');
            struserid.focus();
            mailcheck.checked = false;
          return false;
        }
    }
 else{
        obj_email.value = "";
    }
 return true;

|
댓글을 작성하시려면 로그인이 필요합니다.

팁게시판

디자인과 관련된 유용한 정보를 공유하세요. 질문은 상단의 QA에서 해주시기 바랍니다.

+
제목 글쓴이 날짜 조회
10년 전 조회 409
10년 전 조회 288
10년 전 조회 293
10년 전 조회 283
10년 전 조회 279
10년 전 조회 224
10년 전 조회 224
10년 전 조회 248
10년 전 조회 240
10년 전 조회 215
10년 전 조회 181
10년 전 조회 264
10년 전 조회 218
10년 전 조회 234
10년 전 조회 226
10년 전 조회 291
10년 전 조회 191
10년 전 조회 201
10년 전 조회 258
10년 전 조회 231
10년 전 조회 285
10년 전 조회 266
10년 전 조회 214
10년 전 조회 190
10년 전 조회 235