📄 tabbed_view.tag~38~
字号:
<%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c" %><%@ attribute name="tabNames" description="Tab names" %><%@ attribute name="height" description="Table height" %><%@ attribute name="width" description="Table width" %><%@ attribute name="selectedTab" description="Name for selected tab" %><%@ attribute name="defaultTab" description="Name for default selected tab" %><%@ attribute name="tabContent" description="Tab content JSP" %><%@ attribute name="path" description="Self redirecting path" %><table border="0" cellpadding="0" cellspacing="0"><tr><c:forEach var="tabName" items="${tabNames}" varStatus="status"><c:choose><c:when test="${tabName==selectedTab}"><c:set var="selectedTabIndex" value="${status.index}" /><td><a href="${path}?tab=${tabName}"><img alt="" src="img/tab1.gif" /></a></td></c:when><c:otherwise><td><a href="${path}?tab=${tabName}"><img alt="" src="img/tab2.gif" /></a></td></c:otherwise></c:choose></c:forEach></tr></table><table width="${width}" border="1" cellpadding="0" cellspacing="0"><tr><td height="${height}"><c:forEach var="tabContentURI" items="${tabContent}" varStatus="status"><c:choose><c:when test="${status.index==selectedTabIndex}"><jsp:include flush="true" page="${tabContentURI}" /></c:when></c:choose></c:forEach></td></tr></table>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -