在网页中,我需要获取最大x和y坐标。
如何使用JavaScript或GWT特定代码实现这一目标?
答案 0 :(得分:4)
查看Window
类,它有获取客户端高度/宽度的方法:
答案 1 :(得分:3)
GWT:
import com.google.gwt.user.client.Window;
int height =Window.getClientHeight();
int width =Window.getClientWidth();
答案 2 :(得分:0)
您可以使用scrollHeight
和scrollWidth
来获取整个页面维度。
var pageheight=document.body.scrollHeight ;
var pageweight=document.body.scrollWidth;
答案 3 :(得分:0)
要获取浏览器窗口的大小,请使用:
Window.getClientHeight()
Window.getClientWidth()
要获取html页面的大小,请使用:
Document.get().getScrollHeight()
Document.get().getScrollWidth()