window.open("xxxx.htm","name","fullscreen=1")
全屏了就什么都没有了。

解决方案 »

  1.   

    在当前BODY里加语句:
    <body  toolbar=no fullscreen=1>
      

  2.   

    window.open("URL","name","fullscreen")
      

  3.   

    <body  toolbar=no fullscreen=1>???body支持这两个参数吗?我在msdn查不到,也没法用,
    是不是我的ie是5.0的原故?
      

  4.   

    参考
    http://www.csdn.net/expert/topic/826/826082.xml?temp=.1665918
      

  5.   

    参看
    http://www.csdn.net/expert/topic/826/826082.xml?temp=.1665918
      

  6.   

    <script language=Javascript>
    window.moveTo(-200,-200);
    window.resizeTo(screen.width+200,screen.height+200);
    function document.onkeydown() 
    {
      if ((window.event.altKey)&&(window.event.keyCode==115)){ //屏蔽Alt+F4
      window.showModelessDialog("about:blank","","dialogWidth:1px;dialogheight:1px");
      return false;}
    }
    </script>
      

  7.   

    window.open("本窗口的url","_self","fullscreen=1")
      

  8.   

    hazeline(砸死我) ,你方法造成死循环
      

  9.   

    ssm1226(雨中人-☆爱思思) ,你的方法有按钮栏!(IE6.0)
      

  10.   

    window.open("url.htm","toolbar=no,location=no,directories=no,status=no,resizable=no,fullscreen=yes,)