阿宽

Nothing is more powerful than habit!
  博客园  :: 首页  :: 新随笔  :: 联系 :: 订阅 订阅  :: 管理

关闭showModalDialog 方法

Posted on 2009-07-01 15:16  宽田  阅读(2254)  评论(0)    收藏  举报

 当关闭showModalDialog的弹出窗口时,总用会弹出一个新的窗口。关闭方法如下:
<script>this.window.close();</script>

  解决方法为:在HTML页面中的html和body之间加入下边代码就可以了。
<base target=_self>
  showModelessDialog的弹出窗口也同样方式关闭。