补:打开一个模态窗口
window.showModalDialog()

解决方案 »

  1.   

    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=gb2312">
    <meta http-equiv="refresh" content="2;URL=xxx.asp">
    </head>
    <body>
    <div align="center">成功,2秒钟后自动跳转到<a href="xxx.asp">XXXXXXXXX</a></div>
    </body>
      

  2.   

    window.location.href="url";
    document.someform.submit();
    这两个都是本页面操作,和打开页面没什么关系window.open();
    window.showModalDialog();
    window.showModelessDialog();
    基本就这三个
    你要打开方法有什么特殊意义么?
      

  3.   

    window.createPopup()
    window.confirm()
    window.alert()这三个也可以算是弹出窗口
    但是就不像上面的那样了能连接到一个页面了
      

  4.   

    window.open();
    window.showModalDialog();
    window.showModelessDialog();只用过open();属性,下面两个东西的使用,用没有有人给个详细属性说明.