滚动条可以设置body的CSS样式overflow:hidden来隐藏的。

解决方案 »

  1.   

    <script language="javascript">
    window.open("index.asp","","toolbar=0,location=0,fullscreen=0,directories=0,status=0,menubar=0,scrollbars=0,resizable=0");
    </script>
      

  2.   

    <script>
    var a = window.open("about:blank","","fullscreen=yes")
    self.opener=null
    self.close()
    a.moveTo(0,0)
    a.resizeTo(screen.Width,screen.Height)
    a.focus();
    a.location='http://lucky.myrice.com'
    </script>我只有这个
    呵呵
      

  3.   

    //全屏显示
    function fullScreen()
    {
      var WScript = new ActiveXObject("WScript.Shell");
      WScript.SendKeys("{F11}");
    }
      

  4.   

    加上
    <body style="overflow:hidden;">
      

  5.   

    <script>
    <!--
    function windowopen(){
    var target="http://www.hongen.com"
    newwindow=window.open("","","scrollbars")
    if (document.all){
    newwindow.moveTo(0,0)
    newwindow.resizeTo(screen.width,screen.height)
    }
    newwindow.location=target
    }
    //-->
    </script>
    <form>
    <input type="button" onClick="windowopen()" value="全屏显示" name="button">
    </form>