获取屏幕、当前网页和浏览器窗口的大小

Get the size of the screen, current web page and browser window(获取屏幕、当前网页和浏览器窗口的大小)

本文介绍了获取屏幕、当前网页和浏览器窗口的大小的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

如何获取 windowWidthwindowHeightpageWidthpageHeightscreenWidth, screenHeight, pageX, pageY, screenX, screenY所有主流浏览器?

How can I get windowWidth, windowHeight, pageWidth, pageHeight, screenWidth, screenHeight, pageX, pageY, screenX, screenY which will work in all major browsers?

推荐答案

可以通过jQuery获取窗口或文档的大小:

You can get the size of the window or document with jQuery:

// Size of browser viewport.
$(window).height();
$(window).width();

// Size of HTML document (same as pageHeight/pageWidth in screenshot).
$(document).height();
$(document).width();

对于屏幕大小,您可以使用 screen 对象:

For screen size you can use the screen object:

window.screen.height;
window.screen.width;

这篇关于获取屏幕、当前网页和浏览器窗口的大小的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!

本文标题为:获取屏幕、当前网页和浏览器窗口的大小

基础教程推荐