본문 바로가기
Frontend/jQuery

jQuery에서 지원하는 Ajax 사용법

by 지구 2018. 5. 23.

$.ajax() function 사용법 : http://api.jQuery.com/jQuery.ajax/ 참조


  • asyn : boolean

    ==> true(default) | false

  • method : http method

    ==> GET(default) | POST

  • contentType : 서버로 전송되는 Data 형식- 

    ==> 'application/x-www-form-urlencoded; charset=UTF-8' (default)

  • data : 서버로 전송하는 QueryString- 

    ==> Object | String

  • dataType : 서버에서 받는 Data 형식- 

    ==> default : Intelligent Guess (xml, json, script, html...)

  • success : function(value1, value2)- 

    ==> request 성공시 호출되는 Callback Function-

    ==> value1 : 서버에서 받은 Data-

    ==> value2 : 상태값



반응형

댓글