1

在教程的帮助下,我可以一键实现两帧的变化。但是有一个问题,那就是当我按下浏览器的后退按钮时,它并没有返回到上一页,而是只会改变一个框架。

我在下面给出了我的页面(除了page2.htmlpage3.htmlpage4.html,因为它们可以是任何东西)

你能帮我解决这个问题吗?

框架集

<html>
<head>
</head>
<frameset rows="20%,80%">
<frame src="page1.html" name="top_frame">
<frame src="page2.html" name="bottom_frame">
</frameset>
</html>

page1.html

 <html>
    <head>
    <title>My Site</title>

    <script language="JavaScript" type="text/javascript">
    function change2(url)
    {
    parent.bottom_frame.location=url;
    }
     </script>

    </head>
    <body>
    Click the link below to change both frames.
    <br />
    <a href="page4.html" target="top_frame" onclick=change2('page3.html')>change 2 frames</a>
    </body>
    </html>
4

0 回答 0