ajax 호출 예제
$.ajax({ url:'/study/tmp/test.php', //request 보낼 서버의 경로 type:'post', // 메소드(get, post, put 등) dataType: "jsonp", jsonpCallback: "myCallback", async: false, //동기: false, 비동기(기본값): ture data:{'id':'admin'}, //보낼 데이터, timeout: 2*60*60*1000, //2 hours, success: function(data) { //서버로부터 정상적으로 응답이 왔을 때 실행 }, error: function(err) { //서버로부터 응답이 정상적으로 처리되지 못햇을 때 실행 } }); $.ajax({ url : "호출주소", // 자신의 도메인..