What is the DOM and BOM in JavaScript?

后端 未结 8 914
太阳男子
太阳男子 2021-01-29 18:39

What is the DOM and BOM in JavaScript? If someone could explain these in layman terms it would be great! I like to get a deeper understanding of these.

8条回答
  •  时光取名叫无心
    2021-01-29 18:51

    The BOM (Browser Object Model) consists of the objects navigator, history, screen, location and document which are children of window. In the document node is the DOM (Document Object Model), the document object model, which represents the contents of the page. You can manipulate it using javascript.

提交回复
热议问题