在弹出的一个窗口,然后在这个窗口先后显示两个URL(同一个窗口,先后打开页面)

解决方案 »

  1.   

    window.open("", "_blank");  //注意, 网络助手会拦截
      

  2.   

    window.open("http://www.baidu.com","","top='0',left='0',width='400',height='400'")
      

  3.   

    window.open(newURL1,"save","width=540,height=240,top=230,left=250");
    window.open(newURL2,"save","width=540,height=240,top=230,left=250");
    名字一样就可以了
      

  4.   

    window.open(newURL1,"save","width=540,height=240,top=230,left=250,scrollbars=yes,resizable=yes,status=yes,menubar=yes");width  窗口的宽度   height 窗口的高度  toolbar  是否有工具拦
    menubar  是否有菜单拦  status  是否有状态兰  scrollbars  是否显示滚动条
    resizale  是否可以调整大小