在网页中,我需要获取最大 x 和 y 坐标。
这是如何使用 JavaScript 或 GWT 特定代码实现的?
GWT :
import com.google.gwt.user.client.Window;
int height =Window.getClientHeight();
int width =Window.getClientWidth();
您可以使用scrollHeight
andscrollWidth
来获取整个页面尺寸。
var pageheight=document.body.scrollHeight ;
var pageweight=document.body.scrollWidth;
要获取浏览器窗口的大小,请使用:
Window.getClientHeight()
Window.getClientWidth()
要获取 html 页面的大小,请使用:
Document.get().getScrollHeight()
Document.get().getScrollWidth()