JS get browser page height wide

Source: Internet
Author: User

Tag:color    use    ar    work    c   ef    window   js    different    

Different browsers may have some differences, please test first when using.
var s = "";
s + = "page visible area width:" + document.body.clientWidth;
s + = "page visible Area High:" + document.body.clientHeight;
s + = "page visible area width:" + document.body.offsetWidth + "(including Edge and scroll bar width)";
s + = "page visible Area High:" + Document.body.offsetHeight + "(including edge width)";
s + = "page body Full text width:" + document.body.scrollWidth;
s + = "page body full text High:" + document.body.scrollHeight;
s + = "page is rolled high (FF):" + document.body.scrollTop;
s + = "page is rolled high (ie):" + document.documentElement.scrollTop;
s + = "page is rolled away left:" + document.body.scrollLeft;
s + = "page body part:" + window.screentop;
s + = "page body part left:" + window.screenleft;
s + = "screen resolution High:" + window.screen.height;
s + = "screen resolution width:" + window.screen.width;
s + = "screen available working area height:" + window.screen.availHeight;
s + = "screen available working area width:" + window.screen.availWidth;
s + = "Your screen settings are" + window.screen.colorDepth + "bit color";
s + = "your screen settings" + Window.screen.deviceXDPI + "pixels/inch";
alert (s);

JS get browser page height wide

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.