iframe 프레임워크 사용

1830 단어 iframe
우리는 프론트 데스크톱 페이지를 작성할 때 항상 메뉴 표시줄을 표시한다.모든 내비게이션 항목 아래에 jsp 코드를 규범화시키기 위해 몇 가지 정보가 표시됩니다.우리는 통상적으로 내비게이션 표시줄 아래에 순환적으로 표시된 정보를 iframe 프레임워크에 넣는다.이렇게 하면 페이지 코드를 더욱 아름답고 규범화할 수 있기 때문이다. 예를 들어 다음과 같다.

 <td height="190" valign="top">
     <iframe src="${pageContext.request.contextPath}/news/list/listSuccess.action?params=pingTaiGongGao&flag=1&pageSize=8" width="100%" scrolling="no" frameborder="0" marginwidth="120" marginheight="100" style="background-color:#ffffff" ></iframe>
 </td>

이 iframe의 페이지는;

<table width="300" border="0" cellspacing="0" cellpadding="0">
	<c:if test="${not empty pingTaiGongGao}">
		<c:forEach items="${pingTaiGongGao}" var="news" varStatus="num">
			<tr>
				<td width="12" height="23" align="left">
					<img src="${pageContext.request.contextPath}/images/webimages/dot01.jpg" width="6" height="7" />
				</td>
				<td align="left">
					<a href="${pageContext.request.contextPath}/news/newsDetail.action?id=${news.id}" target="_blank"><script language='javascript'>'${news.title}'.subString(0,18);</script>...</a>
					</td>
			</tr>
			<tr>
				<td colspan="2" background="${pageContext.request.contextPath}/images/webimages/dot02.jpg"
					height="1"></td>
			</tr>
		</c:forEach>
	</c:if>
</table>

좋은 웹페이지 즐겨찾기