window.open("index.htm","","fullscreen")

解决方案 »

  1.   

    1.open new one,close the old one
    try:window.open('index2.asp','','fullscreen=yes');window.opener=null;window.close()
    2.window.resizeTo(screen.availWidth+100,screen.availHeight+100);
    window.moveTo(-100,-100);
      

  2.   

    <script language="JavaScript"><!--
    if (window.opener==null)
    {
        window.open(window.location.href, "", "channelMode"); //打开类似F11的窗口
        window.opener = "meizz";  //加了这句在IE5.5+浏览器里就不会有关闭窗口的提示
        window.close();
    }
    //--></script>