목차
$.getJSON() 예제
$.getJSON() 정의
$.getJSON() 구문
$.getJSON() 예제
※ text.js 내용.
{
"사이트": "홈짱닷컴",
"도메인": "Homzzang.com",
"오픈년도": 2012
}
※ test.php
<!DOCTYPE html>
<html>
<head>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<script>
$(document).ready(function(){
$("button").click(function(){
$.getJSON ("test.js ", function(result){
$.each(result, function(i, field){
$("div").append(field + " ");
});
});
});
});
</script>
</head>
<body>
<button>JSON 데이터 가져오기</button>
<div></div>
</body>
</html>
결과값: 홈짱닷컴 Homzzang.com 2012
$.getJSON() 정의
HTTP GET 요청 사용해 서버에서 JSON 인코딩 데이터를 가져옴.
$.getJSON() 구문
$(selector ).getJSON(url,data ,success(data,status,xhr ))
[매개변수]
url 필수 항목. 요청을 보낼 URL을 지정.
data 선택 사항. 서버에 전송할 데이터를 지정.
success(data, status, xhr ) 선택적. 요청이 성공할 경우 실행할 함수를 지정.
data
서버에서 반환 된 데이터를 포함.
status
요청 상태 (※ 가능값 종류: "success ", "notmodified ", "error ", "timeout ", "parsererror ")
xhr
XMLHttpRequest 객체를 포함.
주소 복사
랜덤 이동