$(function() {

 $("#join_confirm").click(function() {

  alert($("#frmJoin").serialize());

  

  if(status){

  $.post("${contextPath}/proc_join", 

    $("#frmJoin").serialize(),

    function(data) {

     if(data.result == 200) {

      location.href="${contextPath}/adminList";    

     } else {

      alert("가입실패");

     }

    }, 

    "json");

  }else{

   alert("중복확인해주시기 바랍니다.");

  }

 });

});

'개발 > JQUERY' 카테고리의 다른 글

jquery checkbox 체크여부/제어하기/체크갯수 구하기  (0) 2017.03.17
jQuery 좌표구하기  (0) 2017.03.17
jquery 모음  (0) 2017.03.17
jquery 한글 영어 숫자 체크  (0) 2017.03.17
jquery datatable 컬럼 동적생성  (0) 2017.03.17

+ Recent posts