一个非常简单的问题。我有一个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>
感谢。
答案 0 :(得分:1)
只需:
document.frames[i].location.reload();
答案 1 :(得分:0)
在你的函数刷新中,写
window.location.reload()