📄 206f30a27813001e1dd9dd943073e196
字号:
<%@ page language="java" contentType="text/html; charset=GB18030"
pageEncoding="GB18030"%>
<%@ taglib prefix="bean" uri="http://struts.apache.org/tags-bean" %>
<%@ taglib prefix="html" uri="http://struts.apache.org/tags-html" %>
<%@ taglib prefix="logic" uri="http://struts.apache.org/tags-logic" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=GB18030">
<title>消息列表</title>
</head>
<body>
${user.username}你好!你收到的消息如下:<br>
<table align="center">
<tr>
<td><input type="checkbox">选择</td>
<td>标题</td>
</tr>
<logic:iterate id="message" name="messages" scope="request">
<tr>
<td colspan="2">未读的消息</td>
<tr>
<td><input type="checkbox">选择</td>
<td><bean:write name="message" property="title"/></td>
</tr>
</logic:iterate>
</table>
</body>
</html>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -