您全屏不就行了吗?
<body onload="javascript:window.open('inquirylogin.htm','','fullscreen=3');window.opener=null;window.close()">
什么都没!!!

解决方案 »

  1.   

    <script language=javascript>
    window.open("aa.htm","","resizable=no");
    </script>
      

  2.   

    http://expert.csdn.net/Expert/topic/1255/1255708.xml?temp=.8485224
      

  3.   

    http://expert.csdn.net/Expert/topic/1255/1255708.xml?temp=.8485224
      

  4.   

    用resizable=0或resizable=no不行啊还有没有办法
      

  5.   

    sorry
    window.open('about:blank','','fullscreen=3');
      

  6.   

    window.open()
    “'toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=no, width=300, height=200,left=100, top=100'”在这里toolbar代表工具栏,location代表地址栏,directories代表导航条,status为状态栏,menubar为菜单栏,scrollbars为滚动条,resizable为更改大小手柄,而 width、height分别表示窗口的宽和高,left、top则表示窗口弹出的位置。toolbar, location, directories, status, menubar, scrollbars, resizable的值可设为yes、no、1或0,yes(1)表示新窗口具有该特性,no(0)则否。而width、height、left、top的值则应以数字填入,单位为px。
    fullscreen,1窗口最大化,2正常,3无按扭(最大化,最小化,关闭)