?? tabbed_view.tag~42~
字號:
<%@ 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:choose><c:when test="${tabName==selectedTab||(selectedTab==''&&tabName==defaultTab)}"><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></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 + -