并指定页面大小

解决方案 »

  1.   

    用window.open();window.open("url","_blank", "top=100, left=287,height=500, width=720, toolbar=no, menubar=no, scrollbars=yes, resizable=no, location=no, status=no");
      

  2.   

    window.open("Sample.htm",null,"height=200,width=400,status=yes,toolbar=no,resizable=no,menubar=no,location=no");resizable 可以是四个值 { yes | no | 1 | 0 }
    在IE7里面. resizable = { no | 0 } 可以disables 新窗口中的Tab页。
      

  3.   

    window.open("","_blank","left=20,top=20,width=176,height=441,toolbar=0,status=0,resizable=0"); function window.onbeforeunload() 

    if(event.clientX>document.body.clientWidth&&event.clientY <0||event.altKey) 

    window.event.returnvalue = ""; 


    window.onresize = function() {
               window.resizeTo(500,600);
           }