Ajax1 [JS] jquery $.ajax 간단한 사용 예제 const data = { name: 'hello', email: 'test@naver.com' }; $.ajax ({ type: "POST", url: "test.php", data: data, success: function(data) { console.log('send data', data); }, error: function(error) { console.log('send data failed', error); } }); type: GET, POST 지정 url : ajax로 요청할 대상 url 지정 async : 동기, 비동기 지정(boolean) dataType : 받아올 데이터의 자료형 지정 data : 요청할 때 보낼 데이터 지정 success : ajax 요청 성공 시 실행할 이벤트 지정.. 2023. 12. 15. 이전 1 다음