jsサブページを閉じて親ページをリフレッシュ
451 ワード
一、開け方はwindow.open
window.opener.location.reload();
二、開け方はwindow.showModalDialog
まず開くときにwindowパラメータを設定します
window.showModalDialog("xx.aspx",window);
ページで使用
var a = window.dialogArguments
a.location.href=a.location.href;
window.close();