ajax 방식 중복 ID 체크 join.jsp $(function(){ //html이 로딩 되고 바로 가입버튼 비활성화 하기 $("#join_join").prop("disabled", true); }); function checkID(){ //var id = $(선택자).명령(); var id = $("#id").val(); //alert(id); if(id == "" || id.length < 4){ alert("아이디를 입력해주세요."); $("#id").focus(); return false; } $.ajax({ type:'post', dataType:'text', data: 'id='+id, url: './idCheck', success: function(rData, textStatus, xhr)..