React
-
DOM (2)React/DOM 2021. 10. 23. 12:47
이 글은 자바스크립트의 DOM(Document Object Model)에 관한 기본 개념 및 문법을 정리하기 위해 작성하였습니다. The document keyword allows you to access the root node of the DOM free. Before you can access a specific element in the page, first you must access the document structure itself. ex) // If you wanted to access element in your script document.body // This will return body element of that DOM. < Twea..
-
DOM (1)React/DOM 2021. 10. 22. 17:26
이 글은 자바스크립트의 DOM(Document Object Model)에 관한 기본 개념을 정리하기 위해 작성하였습니다. DOM is a representation of a webpage created by and stored in user's browser. To allow for web scripting languages to access, modify, and update the HTML File. (Think of the DOM as the link between an HTML and scripting languages) DOM is a language-agnostic structure implemented by browsers. The browser take..