欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

js获取浏览器的各种属性

程序员文章站 2023-10-20 09:52:38
网页可见区域宽: document.body.clientwidth; 网页可见区域高: document.body.clientheight; 网页可见区域宽: do...

网页可见区域宽: 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;

scrollheight: 获取对象的滚动高度。 

scrollleft:设置或获取位于对象左边界和窗口中目前可见内容的最左端之间的距离

scrolltop:设置或获取位于对象最顶端和窗口中可见内容的最顶端之间的距离

scrollwidth:获取对象的滚动宽度

offsetheight:获取对象相对于版面或由父坐标 offsetparent 属性指定的父坐标的高度

offsetleft:获取对象相对于版面或由 offsetparent 属性指定的父坐标的计算左侧位置

offsettop:获取对象相对于版面或由 offsettop 属性指定的父坐标的计算顶端位置 

event.clientx 相对文档的水平座标

event.clienty 相对文档的垂直座标

event.offsetx 相对容器的水平坐标

event.offsety 相对容器的垂直坐标 

document.documentelement.scrolltop 垂直方向滚动的值

event.clientx+document.documentelement.scrolltop 相对文档的水平座标+垂直方向滚动的量

要获取当前页面的滚动条纵坐标位置,用:

document.documentelement.scrolltop;

而不是:

document.body.scrolltop;

documentelement 对应的是 html 标签,而 body 对应的是 body 标签

以上就是本文的全部内容,希望本文的内容对大家的学习或者工作能带来一定的帮助,同时也希望多多支持!