window.open("目标窗口","窗口名称","相关参数")
相关参数也可以不设置,默认就可以了
你自己看看了,看看教程·!

解决方案 »

  1.   

    window.open('','','height=480, width=770, toolbar=no, menubar=no, scrollbars=no, resizable=yes, location=no, status=no')
      

  2.   

    window.open('index.jsp','','fullscreen=1');
      

  3.   

    opopup=window.createPopup(); 
    opopup.document.body.innerHTML="...html code ..."; 
    opopup.show(0,0,screen.width,screen.height,document.body);
      

  4.   

    //弹出一个全屏窗口,然后吧原来的窗口关闭var sFeatures = "fullscreen=1,toolbar=0,location=0,directories=0,status=0,menubar=0scrollbars=0,resizable=0,top=0,left=0";
    window.open( "index.htm", "newPage", sFeatures, false);

    //关闭自己
    window.opener=null;
    window.close();