Maison >interface Web >tutoriel HTML >frameset中页面自动刷新问题,求教_html/css_WEB-ITnose

frameset中页面自动刷新问题,求教_html/css_WEB-ITnose

WBOY
WBOYoriginal
2016-06-24 12:11:03807parcourir

在index.jsp中

<frameset>	<frame></frame>	<frameset>		<frame></frame>		<frame>A</frame>	</frameset></frameset>



在A 中写上
<meta http-equiv="refresh" content="3;URL=index.jsp">


这样只会在A中显示刷新,我是想让网页整体刷新,求教?


回复讨论(解决方案)

是写在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>

用脚本好!

Déclaration:
Le contenu de cet article est volontairement contribué par les internautes et les droits d'auteur appartiennent à l'auteur original. Ce site n'assume aucune responsabilité légale correspondante. Si vous trouvez un contenu suspecté de plagiat ou de contrefaçon, veuillez contacter admin@php.cn