获取屏幕、当前网页和浏览器窗口的大小
2022-08-29 21:51:59
如何获得可在所有主流浏览器中使用的 、 ?windowWidth
windowHeight
pageWidth
pageHeight
screenWidth
screenHeight
pageX
pageY
screenX
screenY
如何获得可在所有主流浏览器中使用的 、 ?windowWidth
windowHeight
pageWidth
pageHeight
screenWidth
screenHeight
pageX
pageY
screenX
screenY
您可以使用jQuery获取窗口或文档的大小:
// Size of browser viewport.
$(window).height();
$(window).width();
// Size of HTML document (same as pageHeight/pageWidth in screenshot).
$(document).height();
$(document).width();
对于屏幕尺寸,您可以使用屏幕
对象:
window.screen.height;
window.screen.width;
这包含您需要了解的所有内容:获取视口/窗口大小
但简而言之:
var win = window,
doc = document,
docElem = doc.documentElement,
body = doc.getElementsByTagName('body')[0],
x = win.innerWidth || docElem.clientWidth || body.clientWidth,
y = win.innerHeight|| docElem.clientHeight|| body.clientHeight;
alert(x + ' × ' + y);
请停止编辑此答案。它现在已经被不同的人编辑了22次,以匹配他们的代码格式偏好。还有人指出,如果您只想面向现代浏览器,则不需要这样做 - 如果是这样,您只需要以下内容:
const width = window.innerWidth || document.documentElement.clientWidth ||
document.body.clientWidth;
const height = window.innerHeight|| document.documentElement.clientHeight||
document.body.clientHeight;
console.log(width, height);