티스토리 뷰

웹프로그래밍/js

jQuery.postJSON ?

공허공자 2012. 1. 3. 13:47
jQuery.getJSON 은 GET 방식으로 전송한다.
그러면 post 방식으로 전송하고 json 으로 응답받으려면?
$.post(url, data, function(jsonResponse) {
    // Do something with  jsonResponse
}, 'json');

[출처] http://abeautifulsite.net/blog/2008/05/postjson-for-jquery/

댓글