js获取元素,窗口的宽度高度
Posted Mr.Nut
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了js获取元素,窗口的宽度高度相关的知识,希望对你有一定的参考价值。
alert($(window).height()); //浏览器时下窗口可视区域高度 alert($(document).height()); //浏览器时下窗口文档的高度 alert($(document.body).height());//浏览器时下窗口文档body的高度 alert($(document.body).outerHeight(true));//浏览器时下窗口文档body的总高度 包括border padding margin alert($(window).width()); //浏览器时下窗口可视区域宽度 alert($(document).width());//浏览器时下窗口文档对于象宽度 alert($(document.body).width());//浏览器时下窗口文档body的高度 alert($(document.body).outerWidth(true));//浏览器时下窗口文档body的总宽度 包括border padding margin alert($(document).scrollTop()); //获取滚动条到顶部的垂直高度 alert($(document).scrollLeft()); //获取滚动条到左边的垂直宽度
以上是关于js获取元素,窗口的宽度高度的主要内容,如果未能解决你的问题,请参考以下文章