JQuery & Ajax & Json 예제
·
자바스크립트&jQuery
1. 클라이언트: jQuery Ajax 요청GET 요청 (데이터 조회)클라이언트가 서버에서 데이터를 조회하는 GET 요청입니다. 서버로부터 받은 response를 if 조건문으로 처리합니다.$.ajax({ url: "server.php", // PHP 파일 경로 type: "GET", // GET 요청 dataType: "json", // 서버에서 받을 데이터 형식 success: function(response) { // 응답 결과 처리 if (response.status === "success") { console.log("요청 성공:", response.message); console.log("받은 데이터:", response.data); // 성공 시 ..