-
[javascript] 55. DOM 문서(DOM document) - 자바스크립트 강좌 JS / CSEWeb/JavaScript 2015. 6. 13. 15:36
JavaScript HTML DOM Document
HTML DOM에서, 문서 객체(document object)는 웹 페이지 입니다.
1. The HTML DOM Document
HTML DOM 객체 모델에서, 문서 객체는 웹 페이지를 나타냅니다.
문서 객체는 웹 페이지의 모든 다른 객체의 주인 입니다.
HTML 페이지 내의 객체를 접근 하고 싶을 때, 문서 객체를 접근 하는 것으로 시작 합니다.
2. Finding HTML Elements
Method Description document.getElementById() Find an element by element id document.getElementsByTagName() Find elements by tag name document.getElementsByClassName() Find elements by class name [ 출처: W3Schools ]
3. Changing HTML Elements
Method Description element.innerHTML= Change the inner HTML of an element element.attribute= Change the attribute of an HTML element element.setAttribute(attribute,value) Change the attribute of an HTML element element.style.property= Change the style of an HTML element [ 출처: W3Schools ]4. Adding and Deleting Elements
Method Description document.createElement() Create an HTML element document.removeChild() Remove an HTML element document.appendChild() Add an HTML element document.replaceChild() Replace an HTML element document.write(text) Write into the HTML output stream [ 출처: W3Schools ]5. Adding Events Handlers
Method Description document.getElementById(id).onclick=function(){code} Adding event handler code to an onclick event [ 출처: W3Schools ]6. Finding HTML Objects
첫 HTML DOM 레벨 1(1998)은 11 HTML 객체, 객체 집합, 속성들을 정의 했습니다. 이러한 것은 HTML5에 아직 유효 합니다.
후에, HTML DOM 레벨 3에서 더 많은 객체, 집합, 속성들이 추가 되었습니다.
Property Description DOM document.anchors Returns all <a> elements that have a name attribute 1 document.applets Returns all <applet> elements(Deprecated in HTML5) 1 document.baseURI Returns the absolute base URI of the document 3 document.body Returns the <body> element 1 document.cookie Returns the document's cookie 1 document.doctype Returns the document's doctype 3 document.documentElement Returns the <html> element 3 document.documentMode Returns the mode used by the browser 3 document.documentURI Returns the URI of the document 3 document.domain Returns the domain name of the document server 1 document.domConfig Obsolete. Returns the DOM configuration 3 document.embeds Returns all <embed> elements 3 document.forms Returns all <form> elements 1 document.head Returns the <head> element 3 document.images Returns all <img> elements 1 document.implementation Returns the DOM implementation 3 document.inputEncoding Returns the document's encoding (character set) 3 document.lastModified Returns the date and time the document was updated 3 document.links Returns all <area> and <a> elements that have a href attribute 1 document.readyState Returns the (loading) status of the document 3 document.referrer Returns the URI of the referrer (the linking document) 1 document.scripts Returns all <script> elements 3 document.strictErrorChecking Returns if error checking is enforced 3 document.title Returns the <title> element 1 document.URL Returns the complete URL of the document 1 [ 출처: W3Schools ]'Web > JavaScript' 카테고리의 다른 글
[javascript] 58. DOM CSS - 자바스크립트 강좌 JS / CSE (0) 2015.06.13 [javascript] 57. DOM HTML - 자바스크립트 강좌 JS / CSE (0) 2015.06.13 [javascript] 56. DOM 요소(DOM elements) - 자바스크립트 강좌 JS / CSE (0) 2015.06.13 [javascript] 54. DOM 메소드(DOM method) - 자바스크립트 강좌 (0) 2015.06.13 [javascript] 53. HTML DOM - 자바스크립트 강좌 JS / CSE (0) 2015.06.13 [javascript] 52. closure - 자바스크립트 강좌 JS / CSE (0) 2015.06.13