jQuery ajax 사용하기.

웹 & 안드로이드/HTML5|2013. 10. 28. 12:10

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
//사용할 버전의 jquery js파일을 입력.
<script src="http://code.jquery.com/jquery-1.10.1.min.js"></script>
<script>
$('#userId').blur(function() {
        $.ajax({
               type: 'POST',  //포스트방식
               url: '/user/id_check_controller',     //요청처리
               data : 'userId='+ $('#userId').val(), //파라미터
               dataType : 'xml',      //처리한 요청을 받는 형식
               success: function(xml){       //성공시 해당함수 실행
                       
                       }
               }
        });
});
</script>



댓글()