0
私はこのリンクからコードを呼び出そうとしています https://stackoverflow.com/a/9100406/942113とgwt jsni。gwt jsni document.documentElement.style.height
私の方法は
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);
}-*/;
のように見えます。しかし、私はそれを呼び出すときに、何も起こりません。
私の質問:document.documentElement.style.height
の値をgwt jsniで設定できないのですか? $doc
代わり
document
の参考としてそれを参照