たとえば、
会員一覧ページで、一部を変更するために子窓を立ち上げます。
更新登録して閉じると、
元ウインドウ(親ウインドウ)の会員データはそのままです。
自動で更新できたらといいなということで、書いてみました。
だれが書いても似たコードになると思います。
<script type="text/javascript"> <!-- function p_reload(){ var parent=window.opener; parent.location.reload(); parent.focus(); window.close(); } //--> </script> <button type="button" onclick="p_reload()">閉じる</button>
「parent」は変数名なので変えてもOKです。