여러분이 사용하고 계신 브라우저는 HTML5를 지원하지 않기 때문에 몇몇 요소가 제대로 보이도록 JScript를 사용하고 있습니다. 하지만 여러분의 브라우저 설정에서 스크립트 기능이 꺼져있으므로, 현재 페이지를 제대로 확인하시려면 스크립트 기능을 켜주셔야 합니다. How to - HTML 포함
How to – HTML 포함
6일전 작성
2주전 수정

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>
기본 예시
예제 보기
참고
Mingg`s Diary
밍구
공부 목적 블로그