gwt jsni document.documentElement.style.height
我尝试从此链接调用代码 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
的值?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
尝试将其引用为
$doc
而不是document
参考:http://code.google.com/webtoolkit/doc/latest/DevGuideCodingBasicsJSNI.html
Try referring to it as
$doc
instead ofdocument
Ref: http://code.google.com/webtoolkit/doc/latest/DevGuideCodingBasicsJSNI.html