<input type="button" onclick="window.open('table.htm','','fullscreen=1')" value=max>

解决方案 »

  1.   

    <script>
    open('about:blank','','channelMode')
    </script>
      

  2.   

    to seabell(百合心) :我不用全屏,谢谢to fason(【阿信】) :我还不想有地址,工具条,菜单栏等。怎样实现?谢谢!!
      

  3.   

    <script>
    var nw=window.open('about:blank')
    nw.resizeTo(screen.availWidth+8,screen.availHeight+8)
    nw.moveTo(-4,-4)
    </script>
      

  4.   

    <script>
    function openEditor()
    {
      var strUrlToOpen = ""
      var props = "top=0,left=0,scrollbars=1,resizable,width=" + (window.screen.width - 4 ) + ",height=" + (window.screen.height - 23);
      var win = window.open(strUrlToOpen,"",props);
      win.moveTo(-4,-4)
    }
    openEditor()
    </script>