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

· 10년 전 · 223

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년 전 조회 410
10년 전 조회 295
10년 전 조회 298
10년 전 조회 290
10년 전 조회 282
10년 전 조회 230
10년 전 조회 232
10년 전 조회 254
10년 전 조회 249
10년 전 조회 221
10년 전 조회 183
10년 전 조회 272
10년 전 조회 224
10년 전 조회 241
10년 전 조회 234
10년 전 조회 296
10년 전 조회 199
10년 전 조회 208
10년 전 조회 264
10년 전 조회 234
10년 전 조회 292
10년 전 조회 271
10년 전 조회 217
10년 전 조회 197
10년 전 조회 242