📄 fragattributes.tag
字号:
<%@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 + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -