我的网页frame1
和frame2
中有2个框架。第2帧显示名为rightpage.html
的html页面。因此,当我点击rightpage.html
上的frame2
时,需要将frame1
网址更改为toppage.html
。
<html>
<frameset cols='45%,55%'>
<frame src='leftpage.html' name='frame1' id='frame1' frameborder='0'>
<frame src='rightpage.html' name='frame2' id='frame2' frameborder='0'>
</frameset>
</html>
你能帮忙吗?
提前致谢。
答案 0 :(得分:3)
如果您想使用JavaScript解决方案,可以使用以下代码段:
parent.frame1.location = 'toppage.html'
您也可以使用锚点的target
属性。例如
<a href="toppage.html" target="frame1">Link text</a>
PS:对于现代网站或网络应用程序来说,使用框架并不可行,我希望你有充分的理由。