📄 showbook2.jsp.svn-base
字号:
<%@ page language="java" contentType="text/html; charset=UTF-8"%>
<%@taglib prefix="s" uri="/struts-tags"%>
<html>
<head>
<title><s:text name="bookPageTitle"/></title>
</head>
<body>
<table border="1" width="360">
<caption><s:text name="bookPageTitle"/></caption>
<s:iterator value="books" status="index">
<s:if test="#index.odd == true">
<tr style="background-color: #cccccc">
</s:if>
<s:else>
<tr>
</s:else>
<td><s:text name="bookName"/></td>
<td>
<s:property />
</td>
</tr>
</s:iterator>
</table>
</body>
</html>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -