<frameset cols="20%,*">
<frame src="AdminQuery.jsp" scrolling="auto" name="left" noresize>
<frame src="Shipment.jsp" scrolling="auto" name="main" noresize>
</frameset>
可以通过下面回到parent界面
<a href="${pageContext.request.contextPath}/jsp/login.jsp" target="_parent" >退出</a>
现在我想用button回到parent界面怎么办onclick="...."应该用什么
<input type="button" value="退出" onclick="window.parent()"/>