我正在开发一个GWT Web应用程序,并且针对特定要求,我需要在加载时全屏显示我唯一的托管html页面。 这是我们在任何网页上按F11的帮助。我在GWT应用程序中需要完全相同的功能。
我已经尝试过使用Javascript来实现这一点。
<script language="JavaScript1.2">
top.window.moveTo(0,0);
if (document.all) {
top.window.resizeTo(screen.availWidth,screen.availHeight);
}
else if (document.layers||document.getElementById)
{
if (top.window.outerHeight<screen.availHeight||top.window.outerWidth<screen.availWidth){
top.window.outerHeight = screen.availHeight;
top.window.outerWidth = screen.availWidth;
}
}
</script>
可能吗?
答案 0 :(得分:1)
您无法强制用户如何显示文档。不过,还有一个Draft for a fullscreen api,另见https://developer.mozilla.org/en/DOM/Using_full-screen_mode
答案 1 :(得分:0)
我认为你需要使用你加载的页面来启动一个新的浏览器窗口,其中包含全页html。第一页只是用这样的脚本开始整个页面
<script>
<!--
window.open("fullpage.html","fs","fullscreen=yes")
//-->
</script>