This is a question about javascript.

Asked 1 years ago, Updated 1 years ago, 48 views

Question about javascript.

On the web using javascript, there are DOM and BOM models, but BOM seems to be supported by the browser.Then, who is supporting DOM? Is it supported by the web server or WAS? Or is this also supported by the browser? I'm asking because I'm curious while looking around.

dom javascript

2022-09-21 21:22

1 Answers

The term DOM is usually used a lot, and the term BOM is unfamiliar, so I looked it up once.

In conclusion, DOM is a standardized API for accessing HTML and XML documents (such as JavaScript), and both DOM and BOM are supported by browsers. DOM is specified as a specification, and BOM seems to be a concept that includes not only documents but also APIs of browsers. ###

I think you can understand that BOM is a broader and less clear definition of DOM.


2022-09-21 21:22

If you have any answers or tips


© 2024 OneMinuteCode. All rights reserved.