ie5.5以上,用createPopup.
ie5以下,用全屏,再resize. 

解决方案 »

  1.   

    <script language='javascript'>window.open('/oasystem/system_frame.jsp','cas2','dependent,resizable,width=screen.width,height=screen.height-100,left=0,top=0');window.close();</script>
      

  2.   

    <script language='javascript'>window.open('/oasystem/system_frame.jsp','big','fullscreen=yes');window.close();</script>
      

  3.   

    Dim intWndWidth,intWndHeightintWndWidth=screen.availwidth-10
    intWndHeight=screen.availHeight-30
    Call window.open("../../default.asp","oa","top=0,left=0,height=" & intWndHeight & ",width=" & intWndWidth & ",status=no,toolbar=no,directories=no,menubar=no,location=no,resizable=no,scrollbars=yes")
      

  4.   

    function go() {
     window.open("文件名", "", "width=1016, height=718, left=0, top=0, menubar=no, location=no, status=no, toolbar=no, scrollbars=no");
    }
      

  5.   

    IE全屏
    修改目标为
    "C:\Program Files\Internet Explorer\IEXPLORE.EXE" -k
    保证什么都没有。只是不是window.open
      

  6.   

    全屏、没有边框、没有菜单
    肯定可以
    <script>
    window.open("login.htm","","FULLSCREEN");
    </script>
      

  7.   

    补充一下:<script language="javascript">
    function aa()
    {
    window.open("aa.htm","","FULLSCREEN");}
    </script>
    <a href="#" onmouseover="aa();">aaa</a>
      

  8.   

    window.open("aa.htm","","FULLSCREEN=3")
      

  9.   

    window.open("aa.htm","","FULLSCREEN=1")
      

  10.   

    window.open("aa.htm","","FULLSCREEN=1")
      

  11.   

    window.open("aa.htm","","FULLSCREEN=1")
      

  12.   

    <Script language="javascript">
    var w=screen.availWidth-10;
    var h=screen.availHeight-30;
    var objwin = window.open('aa.asp',"","fullscreen=0,toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=0,resizable=1,width=" + w + ",height=" + h + ",top=0,left=0",true);
    objwin.focus();
    </script>
      

  13.   

    function openwin(){
    window.open('http://www.dgpage.net/dgpage/','_blank','top=0,left=0,width=600,height=400, toolbar=1, menubar=1, scrollbars=1, resizable=1, location=1, status=1')
    }