如何在JavaScript或GWT中获取页面维度

时间:2013-02-20 07:25:04

标签: javascript gwt

在网页中,我需要获取最大x和y坐标。

如何使用JavaScript或GWT特定代码实现这一目标?

4 个答案:

答案 0 :(得分:4)

查看Window类,它有获取客户端高度/宽度的方法:

答案 1 :(得分:3)

GWT:

import com.google.gwt.user.client.Window;

int height =Window.getClientHeight();
int width =Window.getClientWidth();

答案 2 :(得分:0)

您可以使用scrollHeightscrollWidth来获取整个页面维度。

var pageheight=document.body.scrollHeight ;
var pageweight=document.body.scrollWidth;

答案 3 :(得分:0)

要获取浏览器窗口的大小,请使用:

Window.getClientHeight()
Window.getClientWidth()

要获取html页面的大小,请使用:

Document.get().getScrollHeight()
Document.get().getScrollWidth()