1 / 19

Document Object Model

Document Object Model. Лекция 3. Объект document. <!DOCTYPE html > <html xmlns="http://www.w3.org/1999/xhtml" > <head> <title>Заголовок</title> </head> <body> <div id="header">Шапка</div> <div id="menu"> <ul>

valin
Télécharger la présentation

Document Object Model

An Image/Link below is provided (as is) to download presentation Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. Content is provided to you AS IS for your information and personal use only. Download presentation by click this link. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server. During download, if you can't get a presentation, the file might be deleted by the publisher.

E N D

Presentation Transcript


  1. Document Object Model Лекция 3. Объект document

  2. <!DOCTYPE html> <html xmlns="http://www.w3.org/1999/xhtml" > <head> <title>Заголовок</title> </head> <body> <div id="header">Шапка</div> <div id="menu"> <ul> <li> <a href="index.html">Главная</a></li> <li> <a href="page1.html">Страница1</a></li> </ul> </div> <div id=“footer">Автор</div> </body> </html>

  3. Свойства и методы для доступа к структуре документа: • document.documentElement • document.body • document.getElementById('идентификатор') • document.getElementsByTagName('имя') • document.getElementsByName('имя') • document.getElementsByClassName('класс') • Пример. • varelems = document.getElementsByTagName('div'); • //elems[0] - div #header • // elems[1] - div #menu • //elems[2] - div #footer

  4. Свойства, позволяющие перемещаться по структуре документа: • childNodes • firstChild • lastChild • parentNode • nextSibling • previousSibling

  5. Поле nodeType: • Node.ELEMENT_NODE • Node.TEXT_NODE • Node.DOCUMENT_NODE • Node.ATTRIBUTE_NODE • Node.COMMENT_NODE

  6. function nextTag(obj) { do obj = obj.nextSibling; while (obj && obj.nodeType != Node.ELEMENT_NODE); return obj; }

  7. Свойства: • tagName • className • id • innerHTML • style • Пример. • varelem = • document.getElementById(‘menu’); • elem.style[‘backgroundColor’] = ‘red’; • elem.style[‘borderLeftRadius’] = ‘10px’;

  8. var color = elem.currentStyle[‘color’]; getComputedStyle(объект[,“:псевдокласс”]); var color = getComputedStyle(elem)[‘color’]; // rgb(0,0,0) или #000000

  9. Манипуляции с параметрами тегов: obj.setAttribute(‘параметр’, ‘значение’) obj.getAttribute(‘параметр’) obj.hasAttribute(‘параметр’) obj.removeAttribute(‘параметр’)

  10. Манипуляции с узлами структуры документа: document.createElement(‘тег’); родитель.appendChild(объект); родитель.insertBefore(объект, DOM-узел); родитель.removeChild(объект); родитель.replaceChild(старый объект, новый объект); старый объект.replaceNode(новый объект);

  11. Пример добавление ссылки в меню: var newLink = document.createElement(‘a’); newLink.innerHTML= “Перейти в Google”; newLink.setAttribute(‘href’, ‘http://google.com.ua’); newLink.style.color = ‘green’; newLink.setAttribute(‘target’, ‘_blank’); var newItem = document.createElement(‘li’); newItem.appendChild(newLink); var menu = document.getElementById(‘menu’); var ul = menu.getElementsByTagName(‘ul’)[0]; ul.appendChild(newItem);

  12. Объектwindow • Методы: • alert(значение); • confirm(вопрос); • if(confirm(‘Удалить?’)) • { • location.href = ‘/news/delete’; • /// … • }

  13. prompt(вопрос[, начальное значение]); • var x = prompt(‘Представьтесь!’); • if(x!= null) • { • alert(‘Привет’, + x); • }

  14. Объект window • Методы: • moveTo(x,y) • moveBy(dx, dy) • resizeTo(x, y) • resizeBy(dx, dy) • print() • open(‘адрес’, ‘имя_окна’, • ‘свойство1= значение1, свойство2= значение2, …’ );

  15. Свойства: • width = ширина • height = высота • left = левая координата • right = правая координата • top = верхняя координата • location = yes | no • menubar = yes | no • scrollbars = yes | no • toolbar = yes | no • status = yes | no • resizable = yes | no

  16. Пример: • x= window.open(‘http://google.com.ua’, ‘google’, ‘width= 600, height=400, location= no, menubar= no’); • x. resizeTo(700, 500);

More Related