o = window.open("","","top=20000")
setTimeout("o.opener=null;o.close()",2000)

解决方案 »

  1.   

    window.open("xx.asp","","top=20000")如果要处理数据,最好在xx.asp的进行关闭的操作
      

  2.   

    window.open('aaa.html', 'newwindow', 'height=100, width=100, top=10000000,left=1000000, toolbar=no, menubar=no, scrollbars=no, resizable=no,location=no,status=no');
      

  3.   

    请问TOP属性值是什么意思呢?
      

  4.   

    window.close();
    弹出之后自己关闭了,不知道是不是楼主想要的答案
      

  5.   

    移到最底边,就OK了
    window.open('a.asp', '', 'top=10000000, scrollbars=no');
      

  6.   

    用window.showModalDialog   dangdang.com放暂存就是用的它..肯定感觉不到..
      

  7.   

    孟老大就是牛。
    不过不定义有时候会出错。下面那样就行了。
    top=20000就是把弹出窗口隐藏起来。你想想top=768就到最底了。改成20000不就更看不到了吗???
    <script language="javascript">
    var o;
    o = window.open("","","top=20000");
    setTimeout("o.opener=null;o.close()",2000);
    </script>
      

  8.   

    如果想用这个处理数据还是不太好,用别的方法吧比如XMLHTTP