jquery javascript获得网页的高度和宽度

javascript

网页可见区域宽:     document.body.clientWidth
网页可见区域高:     document.body.clientHeight
网页可见区域宽:     document.body.offsetWidth (包括边线的宽)
网页可见区域高:     document.body.offsetHeight (包括边线的高)
网页正文全文宽:     document.body.scrollWidth
网页正文全文高:     document.body.scrollHeight
网页被卷去的高:     document.body.scrollTop
网页被卷去的左:     document.body.scrollLeft
网页正文部分上:     window.screenTop
网页正文部分左:     window.screenLeft
屏幕分辨率的高:     window.screen.height
屏幕分辨率的宽:     window.screen.width
屏幕可用工作区高度: window.screen.availHeight

屏幕可用工作区宽度: window.screen.availWidth

jquery

获取浏览器显示区域的高度:   $(window).height();
获取浏览器显示区域的宽度:   $(window).width();
获取页面的文档高度:         $(document).height();
获取页面的文档宽度:         $(document).width();

获取滚动条到顶部的垂直高度: $(document).scrollTop();
获取滚动条到左边的垂直宽度: $(document).scrollLeft();

计算元素位置和偏移量
offset方法是一个很有用的方法,它返回包装集中第一个元素的偏移信息。默认情况下是相对body的偏移信息。结果包含top和left两个属性。
offset(options, results)
options.relativeTo  指定相对计算偏移位置的祖先元素。这个元素应该是relative或absolute定位,省略则相对body。
options.scroll      是否把 滚动条计算在内,默认TRUE
options.padding     是否把padding计算在内,默认false
options.margin      是否把margin计算在内,默认true
options.border      是否把边框计算在内,默认true

jquery javascript获得网页的高度和宽度

时间: 2024-10-11 12:46:55

jquery javascript获得网页的高度和宽度的相关文章

jQuery,javascript获得网页的高度和宽度$(document).height / $(window).height

一.javascript 网页可见区域宽: document.body.clientWidth 网页可见区域高: document.body.clientHeight 网页可见区域宽: document.body.offsetWidth (包括边线的宽) 网页可见区域高: document.body.offsetHeight (包括边线的高) 网页正文全文宽: document.body.scrollWidth 网页正文全文高: document.body.scrollHeight 网页被卷去的

javascript获取和判断浏览器窗口、屏幕、网页的高度、宽度等

主要介绍了javascript获取和判断浏览器窗口.屏幕.网页的高度.宽度等 scrollHeight: 获取对象的滚动高度.scrollLeft:设置或获取位于对象左边界和窗口中目前可见内容的最左端之间的距离scrollTop:设置或获取位于对象最顶端和窗口中可见内容的最顶端之间的距离scrollWidth:获取对象的滚动宽度offsetHeight:获取对象相对于版面或由父坐标 offsetParent 属性指定的父坐标的高度offsetLeft:获取对象相对于版面或由 offsetPare

javascript 获取视口的高度和宽度

//获取视口的高度和宽度. function windowHeight() { var de = document.documentElement; return self.innerHeight||(de && de.offsetHeight)||document.body.offsetHeight; } function windowWidth() { var de = document.documentElement; return self.innerWidth||( de &am

javascript、jquery获取网页的高度和宽度

javascript: 可视区域宽 :document.documentElement.clientWidth  (width + padding) 可视区域高 :document.documentElement.clientHeight (height + padding) 可视区域宽: document.body.offsetWidth (包括边线的宽: width + padding + border) 可视区域高: document.body.offsetHeight (包括边线的高:h

Jquery 文档的各种高度和宽度

$(document).ready(function() { alert($(window).height()); //浏览器时下窗口可视区域高度 alert($(document).height()); //浏览器时下窗口文档的高度 alert($(document.body).height());//浏览器时下窗口文档body的高度 alert($(document.body).outerHeight(true));//浏览器时下窗口文档body的总高度包括border padding ma

js获取网页面的高度和宽度

网页可见区域宽:document.body.clientWidth网页可见区域高:document.body.clientHeight网页可见区域宽:document.body.offsetWidth(包括边线的宽)网页可见区域高:document.body.offsetHeight(包括边线的宽)网页正文全文宽:document.body.scrollWidth网页正文全文高:document.body.scrollHeight网页被卷去的高:document.body.scrollTop(I

JQuery获取浏览器窗口的高度和宽度

<script type="text/javascript"> $(document).ready(function() { alert($(window).height()); //浏览器时下窗口可视区域高度 alert($(document).height()); //浏览器时下窗口文档的高度 alert($(document.body).height());//浏览器时下窗口文档body的高度 alert($(document.body).outerHeight(tr

获得网页的高度和宽度

js: 屏幕分辨率为:screen.width * screen.height 屏幕可用大小:screen.availWidth * screen.availHeight 网页可见区域宽:document.body.clientWidth 网页可见区域高:document.body.clientHeight 网页可见区域宽(包括边线的宽):document.body.offsetWidth 网页可见区域高(包括边线的宽):document.body.offsetHeight 网页正文全文宽:do

javascript获取浏览器的高度和宽度(documentElement,clientHeight,offsetHeight,scrollHeight,scrollTop,offsetParent,offsetY,innerHeight)

document.body.clientHeight: IE.chrome.firefox: body对象高度(height+padding),body的默认高度为0 document.body.clientWidth: IE.chrome.firefox body对象的宽度(width+padding),body的默认宽度是浏览器宽度减去body的maring document.documentElement.clientHeight/document.documentElement.clie