JSON 데이터를 사용하여 HTML을 생성하는 코드는 다음과 같습니다 -
참고 − JSONPlaceholder는 테스트 및 프로토타이핑을 위한 가짜 온라인 REST API입니다.
예시
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8" /> <meta name="viewport" content="width=device-width, initial-scale=1.0" /> <title>Document</title> <style> body { font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif; } .sample { font-size: 18px; font-weight: 500; color: red; } </style> </head> <body> <h1>JSON arrays</h1> <div class="sample">EMPLOYEE NAME</div> <table border="1" class="employee"></table> <button class="Btn">CLICK HERE</button> <h3> Click on the above button to fill the employee table </h3> <script> let sampleEle = document.querySelector(".employee"); document.querySelector(".Btn").addEventListener("click", () => { fetch("https://jsonplaceholder.typicode.com/users") .then((response) => response.json()) .then((result) => { result.forEach((element) => { sampleEle.innerHTML += "<td>" + element.name; }); }); }); </script> </body> </html>
출력
'여기를 클릭' 버튼을 클릭하면 -