javascript: Page Visible area width: Document.body.clientWidth Web page visible Area High: Document.body.clientHeight Web page Visible area width: document.body.offsetWidth (including edge width) web page visible Area High: document.body.offsetHeight (including high edges) Page body Full text width: document.body.scrollWidth page body Full text High: Document.body.scrollHeight page is rolled High: Document.body.scrollTop page is rolled left: Document.body.scrollLeft page Body part: Window.screentop page body part left: Window.screenleft High screen resolution: window.screen.height Width of screen resolution: Window.screen.width Screen Available Workspace height: Window.screen.availHeight screen available work area width: window.screen.availWidth jquery:$ (document). Ready (function () {Alert (window). Height ());//browser Current window viewable area height alert ($ (document). Height ());//browser Current window document Altitude alert ($ ( document.body). Height ());//browser Current window document body Altitude alert ($ (document.body). Outerheight (True));//browser Current window document body Total height Includes border padding Marginalert ($ (window). width ()); Browser Current window viewable area width alert ($ (document). width ());//browser Current window Document object widths alert ($ (document.body). width ());// Browser Current Window document body width alert ($ (document.body). Outerwidth (True));//The total width of the document body of the browser's current window includes border padding margin})
Web Access to all sides high-width