如果用window.open打开一个width=300,height=200,并且在屏幕右下角显示的网页...
请大侠们指点下..最好有代码....十分感谢~

解决方案 »

  1.   

    window.open ('page.html', 'newwindow', 'height=200, width=300, top=300, left=400, toolbar=no, menubar=no, scrollbars=no, resizable=no,location=n o, status=no')
      

  2.   

    还有一个方法也可以滴。ShowModalDialog(sUrl,sArgument,sOptions)
    sUrl为打开页的地址
    sArgument为页面之间传递的参数
    sOptions与楼上参数差不多。
      

  3.   

    window.open('table.html','newwindow','height=200,width=300,top='+(screen.height-280)+',left='+(screen.width-310)+',toolbar=no,menubar=no, scrollbars=no,resizable=no,location=no,status=no');
      

  4.   

    用 javascript 
    window 的
              moveTo() 将窗口的左上角移动到指定的坐标。
     moveBy() 可将窗口移动指定像素。
    应该可以实现