javascriptはどのように親ページを更新しますか?
807 ワード
iframe、ポップアップで親ページを更新します.
親ウィンドウの更新
オープン方法で開くウィンドウを更新します.
window.show ModelDialog()メソッドで開くウィンドウを更新します.
<script language=JavaScript>
parent.location.reload();
</script>
サブページをイジェクト<script language=JavaScript>
window.opener.location.reload();
</script>
親ウィンドウの更新
<script language=JavaScript>
self.opener.location.reload();
</script>
オープン方法で開くウィンドウを更新します.
<script language=JavaScript>
window.opener.location.href=window.opener.location.href;
</script>
window.show ModelDialog()メソッドで開くウィンドウを更新します.
<script language="javascript">
window.parent.dialogArguments.document.execCommand('Refresh');
</script>