ホームページ >ウェブフロントエンド >htmlチュートリアル >フレームセットでのページの自動更新の問題。help_html/css_WEB-ITnose を参照してください。
index.jsp で
<frameset> <frame></frame> <frameset> <frame></frame> <frame>A</frame> </frameset></frameset>
<meta http-equiv="refresh" content="3;URL=index.jsp">
それはindex.jspまたはAで書かれていますか?
<script type="text/javascript">window.onload = function() { setTimeout('self.parent.location.reload()', 3000);}</script>
window.top も使用できます:
<script type="text/javascript">window.onload = function() { setTimeout('window.top.location = "index.jsp";', 3000);}</script>
スクリプトを使用してください!