ajax json 썸네일형 리스트형 json ajax 로 받아와서 값 출력 하기 출력값예시 {"response":"OK","result_gubun":"S","result_code":"code_1234"} $("#test_btn").click(function () { $.ajax({ type: 'POST', url: '/mobile/My_action/index_post', data: { SVC_NUM: "123456" ,action : "num" }, success: function (result) { if (result) { console.log(result); console.log(result.result_gubun); // console.log(result.result_code); // } else { console.log(result); } } }); // end ajax }); 더보기 이전 1 다음