fragattributes.tag
来自「jsp动态网站开发与实例(第3版) 源码」· TAG 代码 · 共 20 行
TAG
20 行
<%@tag dynamic-attributes="mnumbers" %><%@taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %><%@attribute name="title" fragment="true" %> <jsp:invoke fragment="title" /><table border="1" width="100%"> <tr> <th width="50%">Book Title</th> <th width="50%">Book Price</th> </tr><c:forEach var="number" items="${mnumbers}"> <tr> <td width="50%" align="center">${number.key}</td> <td width="50%" align="center">${number.value}</td> </tr></c:forEach> </table> <br>
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?