jQuery Ajax 함수 의 반환 값 가 져 오기

649 단어 jquery
참고:
http://blog.csdn.net/crx05/article/details/7362252
function test() {

                var myText  = "";

                myText = $.ajax({

                    type: "POST",

                    url: "/dragable/demo/test",

                    async:false,

                    data: {},

                   // dataType: "json",

                    dataType: "text",

                    success: function(data){

                                            

                    }}).responseText;

                alert(myText);

}

좋은 웹페이지 즐겨찾기