0
我嘗試使用gwt jsni從此鏈接調用代碼 https://stackoverflow.com/a/9100406/942113。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);
}-*/;
但是,當我把它,什麼都不會發生。
我的問題:是不是可以用gwt jsni設置document.documentElement.style.height
的值?