我尝试从此链接调用代码
https://stackoverflow.com/a/9100406/942113与gwt jsni。

我的方法看起来像

  public static native void hideAddressBar() /*-{
        if (document.documentElement.scrollHeight < $wnd.outerHeight * $wnd.devicePixelRatio) {
            document.documentElement.style.height = ($wnd.outerHeight * $wnd.devicePixelRatio) + 'px';
        }
        setTimeout($wnd.scrollTo(1, 1), 0);
  }-*/;


但是当我打电话时,什么也没发生。

我的问题:用gwt jsni是否可以设置document.documentElement.style.height的值?

最佳答案

尝试将其称为$doc而不是document

参考:http://code.google.com/webtoolkit/doc/latest/DevGuideCodingBasicsJSNI.html

10-04 20:10