w3.css
HTML 포함
HTML에 HTML 스니펫을 포함하는 방법을 알아보자.
HTML
.html 파일에 포함하려는 HTML을 저장한다.
content.html
<a href="howto_google_maps.asp">Google Maps</a><br> <a href="howto_css_animate_buttons.asp">Animated Buttons</a><br> <a href="howto_css_modals.asp">Modal Boxes</a><br> <a href="howto_js_animate.asp">Animations</a><br> <a href="howto_js_progressbar.asp">Progress Bars</a><br> <a href="howto_css_dropdown.asp">Hover Dropdowns</a><br> <a href="howto_js_dropdown.asp">Click Dropdowns</a><br> <a href="howto_css_table_responsive.asp">Responsive Tables</a><br>
HTML을 포함
HTML을 포함하려면 w3-include-html 속성을 사용한다.
예제
<div w3-include-html="content.html"></div>
자바스크립트를 추가
HTML 포함은 JavaScript에 의해 수행된다.
예제
<script> function includeHTML() { var z, i, elmnt, file, xhttp; /* Loop through a collection of all HTML elements: */ z = document.getElementsByTagName("*"); for (i = 0; i < z.length; i++) { elmnt = z[i]; /*search for elements with a certain atrribute:*/ file = elmnt.getAttribute("w3-include-html"); if (file) { /* Make an HTTP request using the attribute value as the file name: */ xhttp = new XMLHttpRequest(); xhttp.onreadystatechange = function() { if (this.readyState == 4) { if (this.status == 200) {elmnt.innerHTML = this.responseText;} if (this.status == 404) {elmnt.innerHTML = "Page not found.";} /* Remove the attribute, and call this function once more: */ elmnt.removeAttribute("w3-include-html"); includeHTML(); } } xhttp.open("GET", file, true); xhttp.send(); /* Exit the function: */ return; } } } </script>
페이지 하단에서 includeHTML()을 호출합니다.
예제
<script> includeHTML(); </script>
기본 예시
예제 보기많은 HTML 스니펫 포함
원하는 수의 HTML 스니펫을 포함할 수 있다.
예제
<div w3-include-html="h1.html"></div> <div w3-include-html="content.html"></div>
기본 예시
예제 보기참고
W3C School - How TO - Include HTML