HTML DOM Article 객체
Article 객체
Article 객체는 HTML <article> 요소를 대표합니다。
주의사항:Internet Explorer 8 및 이전 버전은 <article> 요소를 지원하지 않습니다。
Article 객체 접근
getElementById()를 사용하여 <article> 요소에 접근할 수 있습니다:
var x = document.getElementById("myArticle");
Article 객체 생성
당신은 document.createElement() 메서드를 사용하여 <article> 요소를 생성할 수 있습니다:
var x = document.createElement("ARTICLE");
관련 페이지
HTML 참조 매뉴얼:HTML <article> 태그