JavaScript获取屏幕,当前网页和浏览器窗口的大小
我怎样才能得到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();
对于屏幕大小,你可以使用screen对象:
window.screen.height;window.screen.width;
以上是 JavaScript获取屏幕,当前网页和浏览器窗口的大小 的全部内容, 来源链接: utcz.com/qa/416808.html