这是我的代码:
<frameset rows="20%,80%">
<frame src="stheader.php" name="top" id="top" noresize="noresize">
<frameset cols="15%,85%">
<frame src="stmenu.php" name="bottomleft" id="bottomleft" noresize="noresize">
<frame src="staff2.php" name="bottomright" id="bottomright" noresize="noresize">
</frameset>
</frameset>
顶部框架只是其中的图像文件。 stmenu.php是:
<h2><u>MENU</u></h2>
<h3><font color="green">Student Database</font></h3>
<ul>
<li><a href="stins.php" target="bottomright">Insert</a></li><br>
<li><a href="stdel.php" target="bottomright">Delete</a></li><br>
<li><a href="stup.php" target="bottomright">Update</a></li><br>
</ul>
<button type="submit" formaction="staff1.php" target="bottomright" >Logout</button>
现在基于以上链接的点击,新页面将在右下方框架中打开。现在如果说我点击退出按钮,那么页面将在右下方框架而不是整页打开。我希望它打开整页。
答案 0 :(得分:1)
使用javascript进行onclick事件:
window.top.location.href = "http://www.site.com";
或将目标属性用作_top
<a href="logout.php" target="_top">Log out</a>