gpt4 book ai didi

php - 刷新html页面中的框架

转载 作者:行者123 更新时间:2023-11-28 21:01:01 28 4
gpt4 key购买 nike

一个非常简单的问题。我有一个html页面,分为三个框架,实际上显示了三个html页面,如下所示:

<HTML>
<HEAD>
<TITLE>A simple frameset document</TITLE>
</HEAD>
<FRAMESET cols="20%, 80%" border="5">
<FRAMESET rows="100, 200" border="5">
<FRAME src="abc.html">
<FRAME src="xyz.html">
</FRAMESET>
<FRAME src="ijk.html">
<NOFRAMES>
<P>This frameset document contains:
<UL>
<li>some text</li>
</UL>
</NOFRAMES>
</FRAMESET>
</HTML>

我需要的是每个页面都有一个强大的刷新按钮(可以由JS/PHP/等支持),这样页面就可以点击按钮独立刷新,并且刷新一个页面不会影响其他页面。这有可能吗?框架中的其中一个页面(例如 abc.html)的示例代码(我想要的)可以是这样的:

<html>
<body>
<img src='123.jpg'><br />
<input type="button" Onclick="refresh">
</body>
</html>

谢谢。

最佳答案

只是:

document.frames[i].location.reload();

关于php - 刷新html页面中的框架,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11061419/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com