try:
<body onload="setwindow">
<script language=javascript>
function setwindow()
{
window.status=no;
window.toolbar=no;
window.width=600px;
...
}
</script>

解决方案 »

  1.   

    window.open('abc.aspx','_blank','width=600,height=500,status=no,menu=no,scroll=auto,toolbar=no')
      

  2.   

    http://expert.csdn.net/Expert/topic/1478/1478080.xml?temp=.7670862
      

  3.   

    to  hychieftain(不同) I try this,but i can not see anything except the error:'no '未定义
      

  4.   

    <script language="Jscript">
            
    function pageload()

    var screenwidth=window.screen.availWidth - 10;
    var screenheight=window.screen.availHeight - 28;

    window.opener=null;

    window.close();
    window.open("logon.aspx","","toolbar=0,menubar=0,location=0,directories=0,status=0,scrollbars=0,resizable=0,left=0,top=0,width=" + screenwidth + ",height=" +screenheight);
     } 


    </script>