DOCTYPE html> 비동기통신(ajax) 아이디 체크 $(function(){ //목표 : 아이디의 입력이 완료되면 중복검사를 요청하여 결과를 출력 $("[name=memberId]").blur(function(){ var id = $(this).val(); $.ajax({ url:"http://localhost:8080/idCheck", method:"post",//전송방식 data:{//전송데이터 memberId : id }, success:function(response){ //아이디가 있으면 "Y" 없으면 "N"이 반환된다 //$(".display").text(response); if(response == "Y") { $(".display").text("이미 사용중인 아이디입니다"); } e..