自己组合一下吧,
window.open("test.html","","height=420,width=600,status=yes,toolbar=no,menubar=no,location=no");

解决方案 »

  1.   

    <script>
    var w=500,h=300,win=window.open("","","fullScreen")
    win.moveTo((screen.width-w)/2,(screen.height-h)/2)
    win.resizeTo(w,h);
    win.location="http://mail.sina.com.cn"
    </script>
      

  2.   

    window.open("url"",
       "width=800,height=520,toolbar=no,location=no,status=yes,menubar=no,scrollbars=auto,resizable=yes");
      

  3.   

    window.open("URL","name","top=?,left=?,height=?,width=?,status=yes/no,toolbar=yes/no,menubar=yes/no,location=yes/no");