<!DOCTYPE html>
<html lang="ko">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>ajax연습</title>
<script src="https://code.jquery.com/jquery-3.6.4.min.js"></script>
<style>
table,
th,
td {
border: 1px solid rgb(15, 15, 75);
border-collapse: collapse;
}
th {
background-color: #50586C;
color: white;
}
.r {
width: 50px;
text-align: center;
}
tr:nth-child(odd) {
background-color: #DCE2F0;
}
</style>
<script>
$(function () {
$.ajax({
url: "https://jsonplaceholder.typicode.com/albums",
dataType: "json",
success: function (result) {
for (let i = 0; i < result.length; i++) {
let tr_elem = `<tr>
<td class="r">${result[i].userId}</td>
<td class="r">${result[i].id}</td>
<td>${result[i].title}</td>
</tr>`;
$("#re_data").append(tr_elem);
}
},
error: function (error) {
console.log(error);
}
});
});
</script>
</head>
<body>
<table>
<thead id="re_data">
<tr>
<th>userId</th>
<th>id</th>
<th>title</th>
</tr>
</thead>
</table>
</body>
</html>
'공부기록 > 실습' 카테고리의 다른 글
연습문제 DB - 마트 운영 SQL 작성해보기 (0) | 2023.04.06 |
---|---|
3월 31일 영화 예매 테이블 명세서 (0) | 2023.03.31 |
3월 23일 (1) 웹 사이트 따라서 만들기 (0) | 2023.03.23 |
3월 15일 야구 전광판 만들기 (0) | 2023.03.16 |
3월 10일 반 별 성적 관리 프로그램 (0) | 2023.03.15 |