页面跳转有关问题

页面跳转问题
我用frameset进行页面布局,其中有一个frame包含一个页面,当我对这个页面上的内容进行超链接时,怎么跳不出这个frameset啊?只会在这个页面所在的frame显示跳转后的页面,怎样才能跳出这个frameset啊?

------解决方案--------------------
超链接里加上属性target = "_top"
用js也行
------解决方案--------------------
_blank 属性
------解决方案--------------------
用<a href="" target="里面写想跳到哪个frameset的名字">。
------解决方案--------------------
<%
response.sendRedirect("loadDataAction.do或者"需要跳转的页面");
%>

加入这样的脚本!
------解决方案--------------------
target属性有main,_bank,top,parent,self.只要不是self都可以跳
------解决方案--------------------
<a herf="" target="_blank">test</a>
------解决方案--------------------
<a href="" target="_bank">
这是打开新的浏览器窗口显示连接的地方
------解决方案--------------------
<a herf="" target="_blank">test </a>
你如果想跳到其中某个frameset就在TARGET属性中填入指定的frameset ID即可啊
------解决方案--------------------
target这个要一样,你框架里面target的属性和你要跳转的那个要一致
------解决方案--------------------
<html>



<frameset rows="143,*,106" cols="*" framespacing="0" frameborder="no"
border="0">
<frame scrolling="No" noresize="noresize" src="jsp/top.html">
<frameset rows="461" cols="258,*" framespacing="0" frameborder="no"
border="0">
<frame scrolling="No" noresize="noresize" src="jsp/menu.jsp">

<frame name="workspace" scrolling="Yes" noresize="noresize"
src="jsp/workspace.jsp">
</frameset>
<frame scrolling="No" noresize="noresize" src="jsp/end.html">
</frameset>
<noframes></noframes>

</html>




menu.jsp:


<BODY background="../img/2.gif" style="background-repeat:no-repeat">
<br>
<div class=tree_1 onmouseover="line(this)"
onMouseOut="delline(this)" onClick="showtree('directly')">
<span id=span_directly style="color: gray">+</span>学习资料

</div>
<div id=directly_value class=tree_2 style="display: none">
<div class=tree_3>
<logic:notEmpty name="typeNameForm" property="infoList">
<logic:iterate id="infoListViewEntity" name="typeNameForm"
property="infoList" indexId="i">
<a
href="../show.do?filetypeid=<bean:write name="infoListViewEntity" property="filetypeid"/>&typename=<bean:write name="infoListViewEntity" property="typename"/>"
target="workspace" onmouseover="line(this)"
onMouseOut="delline(this)"> <bean:write
name="infoListViewEntity" property="typename" /> </a>
<br>
</logic:iterate>
</logic:notEmpty>