<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Insert title here</title>
<!-- Bootstrap CSS -->
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap@4.6.1/dist/css/bootstrap.min.css" integrity="sha384-zCbKRCUGaJDkqS1kPbPd7TveP5iyJE0EjAuZQTgFLD2ylzuqKfdKlfG/eSrtxUkn" crossorigin="anonymous">
<script>
$(document).ready( () => {
$.ajax({
type: "get",
success : function(data) {
// Sucess시, 처리
console.log(data);
console.log(data.squadName);
console.log(data.members[0]);
console.log(data.members[0].name);
$(data.members).each( (index,member)=>{
console.log(member);
}
);
},
error : function(xhr, textStatus, errorThrown){
// Error시, 처리
alert(xhr);
alert(textStatus);
alert(errorThrown);
}
});
});
</script>
</head>
<body>
</body>
</html>
'프로그래밍 언어 > 자바스크립트' 카테고리의 다른 글
자바 스크립트에서의 객체 생성 방법 (0) | 2022.01.26 |
---|---|
ES6 문법 정리(중요) (0) | 2022.01.09 |
자바스크립트 - 가위바위보 게임 (0) | 2022.01.08 |
ES6 를 ES5 로 변환 하여 볼수 있는 사이트 (0) | 2021.12.16 |
자바스크립트에서 초보에게 어려운 문법 들 정리 (0) | 2021.11.27 |