怎样使网页全屏幕显示,(不显示任何东西,包括工具条,最大,最小,关闭按钮,滚动条)(10分)

  • 主题发起人 主题发起人 linxia
  • 开始时间 开始时间
L

linxia

Unregistered / Unconfirmed
GUEST, unregistred user!
(不显示任何东西,包括工具条,最大,最小,关闭按钮,滚动条)
 
用java知道怎么做吗? 谢了
 
<SCRIPT language=JavaScript>
function openfullWin(url)
{
newWin = window.open(url,"fullWin","resizable=no,scrollbars=no,toolbar=no,menubar=no,fullscreen=yes")
newWin.focus()
}
</SCRIPT>
 
我不是打开新窗口, 是自巳本身, 我对java不熟悉,请问怎么调用这段代码, 我想一浏览网页自动全屏幕, 而不是
通过链接点击, 谢谢你了
 
因为我做的不是弹出广告, 可以吗?
 
这个问题似乎是无法解决的,呵呵! 只能在新开窗口。
 
你一定有办法的,哈哈
 
你是说似乎, 那就是还可以有救了
 
没救了,微软的主页我都去查过了 :(
 
我调用自己时,会闪烁, 能不能只执行一次,她好像死循环
 
真的解决问题吗?
 
???
java 還是 javascript
在 java 中用 JWindow, setSize(800,600)
 
<script language="JavaScript">
window.onload = maxWindow;
function maxWindow()
{
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>
 
代个参数就可以,不信,你点击开始--->运行---输入:
IEXPLORE.EXE -k
看看什麽效果:)
 
window.open("title.htm","online","fullscreen=1");
 
使窗口全屏出现:
window.open("title.htm","online","fullscreen=1");
不过还有一个滚动条
使用下面方法去除:
<body scollbar=no> //记不清是不是这样写scollbar,反正就是让滚动条不出现
</body>
 
这个问题就是yysun老师的答案。
 
接受答案了.
 
后退
顶部