的理解和使用">
[html] view plaincopy <%@tag description="template 1" pageEncoding="UTF-8"%> <%@attribute name="header" fragment="true" %> <%@attribute name="footer" fragment="true" %> <!DOCTYPE html> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> </head> <body> <jsp:invoke fragment="header"/> <jsp:doBody/> <jsp:invoke fragment="footer"/> </body> </html>
<%@page contentType="text/html" pageEncoding="UTF-8"%> <%@ taglib prefix="t" tagdir="/WEB-INF/tags/"%> http://write.blog.csdn.net/postedit <t:template> <jsp:attribute name="header"> 这里的内容显示在头部。 </jsp:attribute> <jsp:attribute name="footer"> 这里的内容显示在尾部。 </jsp:attribute> <jsp:body> 这里显示正文内容:Hello World! </jsp:body> </t:template>