我正在用 java JSP 做大学项目,在我的 index.html 页面中我使用了 2,我想打开一个从 1 iframe 到 2 nd iframe 的 jsp 页面。我已经尝试使用但它不支持目标属性。请尽快帮助我。
问问题
916 次
1 回答
0
<!DOCTYPE html>
<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core"%>
<%@ taglib uri="http://www.springframework.org/tags" prefix="s"%>
<%@ taglib uri="http://www.springframework.org/security/tags" prefix="security" %>
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta http-equiv="X-UA-Compatible" content="chrome=1"/>
<title><s:message code="login.title"/></title>
<link href="css/custom.css" rel="stylesheet" type="text/css" />
<link href="css/style.css" rel="stylesheet" type="text/css" />
</head>
<body id="body">
<div class="container">
<div class="header">
<div class="logo"> <!-- space for logo --> </div>
<div class="title"> <s:message code="login.title"/> </div>
</div>
<div class="clr"></div>
<div class="main-container">
<div class="container">
<a href="<c:url value="/logout" />" class="login-buttons" style="float: right;"> Logout</a>
<h3>Message : ${message}</h3>
<h3>Username : ${username}</h3>
<div class="clr"></div>
<div style="width:32%;height:600px;float:left!important;">
<iframe id="tokbox" src="${requestScope.contextPath}/tokbox" scrolling="no" width="100%" height="100%" style="float:left!important;border:1px solid #000;" frameborder="0" seamless="seamless">
</iframe>
</div>
<div style="width:67%;height:600px;float:left!important;border:1px solid #000;">
<iframe id="openMRS" src="http://ec2-54-229-226-106.eu-west-1.compute.amazonaws.com:8080/openmrs/index.htm" width="100%" height="100%" style="float:left!important;" frameborder="0" seamless="seamless">
</iframe>
</div>
</div>
</div>
<div class="clr"></div>
<div class="footer"> Copyright © 2013. All Rights Reserved.</div>
</div>
</body>
</html>
于 2013-10-21T05:09:07.957 回答