Document
Обновлено: 27.03.2023
The Document Object
Коли документ HTML завантажується у веб-браузер, він стає об’єктом документа .
Об’єкт документа є кореневим вузлом документа HTML.
Об'єкт документа є властивістю об'єкта вікна .
Доступ до об’єкта документа здійснюється за допомогою:
window.document
або простоdocument
Властивості та методи об’єкта документа
Для документів HTML можна використовувати такі властивості та методи:
-
defaultView
defaultView
Returns the window object associated with a document, or null if none is available.
-
getElementById()
getElementById()
Returns the element that has the ID attribute with the specified value
-
getElementsByClassName()
getElementsByClassName()
Returns an HTMLCollection containing all elements with the specified class name
-
getElementsByName()
getElementsByName()
Returns an live NodeList containing all elements with the specified name
-
getElementsByTagName()
getElementsByTagName()
Returns an HTMLCollection containing all elements with the specified tag name
-
links
links
Returns a collection of all <a> and <area> elements in the document that have a href attribute
-
querySelector()
querySelector()
Returns the first element that matches a specified CSS selector(s) in the document
-
querySelectorAll()
querySelectorAll()
Returns a static NodeList containing all elements that matches a specified CSS selector(s) in the document
-
removeEventListener()
removeEventListener()
Removes an event handler from the document (that has been attached with the addEventListener() method)