JavaScript Document.compatmode Properties

Source: Internet
Author: User

Document mode in the development of seemingly rarely used, the most common is to get the page when the width of the high, such as the document width is high, the visible area wide high.

IE's rendering of box models is very different in standards mode and quirks mode, and the interpretation of box models under standards mode is the same as other standard browsers, but in quirks mode it is very different. In the case of not declaring doctype, IE defaults to quirks mode. So for compatibility reasons, we may need to get the current document rendering method.

Document.compatmode comes in handy, and it has two possible return values: Backcompat and Css1compat.

Backcompat: Standard compatibility mode is off. Browser client area width is document.body.clientwidth;css1compat: Standard compatibility mode is turned on. Browser client area width is document.documentElement.clientWidth.

So write a code that accurately gets the width, height, scroll bar, left, and top of the page's client area:

The code is as follows:

if(Document.compatmode = = "Backcompat") {Cwidth=Document.body.clientWidth; Cheight=Document.body.clientHeight; Swidth=Document.body.scrollWidth; Sheight=Document.body.scrollHeight; Sleft=Document.body.scrollLeft; STop=Document.body.scrollTop;} Else{//Document.compatmode = = "Css1compat"Cwidth =Document.documentElement.clientWidth; Cheight=Document.documentElement.clientHeight; Swidth=Document.documentElement.scrollWidth; Sheight=Document.documentElement.scrollHeight; Sleft= Document.documentElement.scrollLeft = = 0?Document.body.scrollLeft:document.documentElement.scrollLeft; STop= Document.documentElement.scrollTop = = 0?Document.body.scrollTop:document.documentElement.scrollTop;} 



JavaScript Document.compatmode Properties

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.