In JavaScript, it is often necessary to get the document element, which is an abbreviation for the HTML Document Object model, which defines a series of standard objects for HTML and a standard way to access and manipulate HTML documents.
Through the DOM, you can access all the HTML elements, along with the text and attributes they contain. You can modify and delete the content, and you can also create new elements. The HTML DOM is independent of the platform and programming language. It can be used by any programming language such as Java, JavaScript, and VBScript.
Dom is independent of the specific programming language and usually accesses the DOM through JavaScript, but it is not strictly required. You can use any scripting language to access the DOM, thanks to its consistent API.
getElementById (ID) (document) Gets the element with the specified unique ID property value in the document
Getelementsbytagname_r (name) returns an array of child elements in the current element with the specified tag name
HasChildNodes () returns a Boolean value that indicates whether the element has child elements getattribute (name) returns the attribute value of the element, and the attribute is specified by name with the Web-based DOM to write a simple cross-browser script to take full advantage of the powerful functional flexibility of XML Use XML as the communication medium between the browser and the server.
W3cdom, you can write a simple cross-browser script that takes advantage of the power and flexibility of XML as a mass between the browser and the server.
If you want to get the width of the browser, there are several ways: (reprint)
1. Get the width of the visible area of the webpage: document.body.clientWidth;
2. Get the height of the visible area of the webpage: document.body.clientHeight;
3. Get the width of the visible area of the webpage: document.body.offsetWidth; (including the width of the edge)
4. Get the page visible area High: Document.body.offsetHeight;(including the width of the edge)
5. Get the full text width of the Web page: document.body.scrollWidth;
6. Get the full text of the Web page High: document.body.scrollHeight;
7. Get the page to be rolled High: document.body.scrollTop;
8. Get the page to be rolled left: document.body.scrollLeft;
9. Get the body part of the webpage: window.screentop;
11. Get the page body part left: window.screenleft;
12. Get the high screen resolution: window.screen.height;
13. Get the width of the screen resolution: Window.screen.width;
14. Screen available work area height: window.screen.availHeight
15. Screen available work area width: window.screen.availWidth
The above is how I operate the DOM, how to get the understanding of DOM object, and how to get the browser's wide understanding, I hope to help you.
JS how to get the DOM and get the browser's wide height?