最近做项目时用到了iframe嵌入框架,iframe嵌入了一个第三方页面,这个页面的内容不可能自己修改,所以之前的所有操作都会嵌入到iframe中,这样不是我想要的。后来在网上搜了下,得到了一个解决办法,记录如下:
<div id="loginDiv" align="center" style="margin-top: 80px;">
<iframe id="auth_login" name="auth_login" class="iframestyle" allowtransparency="true" style="width:487px; height: 477px;border: none;"
src="authen/loginUrl.json"
frameborder="0" scrolling="no"></iframe>
</div>
jsp:
<script language="javascript">
window.parent.frames.location.href="../welcome.en"
</script>
后台java code:
PrintWriter out = response.getWriter();
out.write("<script type=‘text/javascript‘>window.parent.frames.location.href = ‘../"+mainPageUrls+"‘;</script>");
时间: 2024-10-11 04:54:38