这是主页的代码:
<frameset cols="12%,19%,69%" framespacing="0" frameborder="NO" border="0" name="mainframeset">
<frame src="1.html" name="maoinFrame" scrolling="no">
<frame src="2.html" name="mainFrame" scrolling="yes" noresize="resize" >
<frame src="3.html" name="bottomFrame" >
</frameset>
1.html
是一个空白页面。 2.html
有以下链接:
<a href="link.html" target="mainframeset">Home</a>
3.html
是另一页。当我单击页面中的主页链接时,我需要在当前窗口中打开(link.html
)而没有框架。目前它在新窗口中打开页面。
答案 0 :(得分:3)
您需要像这样设置target="_top"
:
<a href="link.html" target="_top">yourtext</a>