同上,也就是改为:
window.open("testtree.htm","_blank","fullscreen=yes","resizable=yes")就可以了

解决方案 »

  1.   

    window.open('testtree.html','_blank','fullscreen=yes,width=200,height=100')
    这句就OK
      

  2.   

    还有一个地方要注意,是IE设置,我之前用maxthon的时候,设置了弹出页面的大小和固定位置弹出,我也郁闷了半天,才看到是IE里有设置。
      

  3.   

    楼主想在父页面里面改变也可以,这么写
    var newWin = window.open('testtree.html','_blank','fullscreen=yes,width=200,height=100')
    newWin.moveTo(0,0);
    newWin.resizeTo(200,100);
      

  4.   

    不过建议和一楼说的那样,在弹出窗口里面写
    也就是testtree.htm页面的body的onload事件里面
    <body onload="window.moveTo(0,0);window.resizeTo(200,100);">
    ……………………
    </body>
    这样比较保险,呵呵