1
<iframe width="920px" height="500px" style="border-radius: 5px; border: 1px solid #cfcfcf;" src="http://login.uid.me/?site=dinterncup-thc&ref=http://interncup-thc.ucoz.com/" onclick="refreshIframe();"></iframe>

iframe内のページを更新した後、ページ全体を更新またはリダイレクトたいと思います。どうやってやるの?ありがとう!

4

1 に答える 1

1

iframe から、親ウィンドウの URL を変更できます。これを refreshIframe 関数に追加します。

parent.location.href="yourNewURL";

これは、iframe とその親が同じドメインにあることを前提としています。

于 2013-04-26T16:35:01.473 に答える