方法一.
<script language="JavaScript">
<!--
function refreshParent() {
window.opener.location.href = window.opener.location.href;
if (window.opener.progressWindow)
window.opener.progressWindow.close();
window.close();
}
//-->
</script>
在子窗口关闭事件执行refreshParent方法
方法二:
<input id="Button1" type="button" value="新增送货地址" onclick="var win ;win=window.showModalDialog('E_PlusAddress.aspx','asdf','dialogWidth:280px;DialogHeight=150px;status:no'); if(!win) {location.href=window.location.href;}" />
比较好的方式是使用DIV 而非新弹出窗口