IE8 showModalDialog()打开新窗口问题

IE8下用js关闭界面时,打开一个新的窗口。
解决方法如下:
将<base target="_self"/>加入到<head>标签里。
放置位置:
<html>
     <head>
           <title>test</title>
           <base target="_self"/>
           .............
     </head>
</html>

你可能感兴趣的:(showModalDialog,ie8)