这是我的 Struts 代码。我想知道如何调整[last/prev]
[next/last]
显示标签中链接的位置
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<%@taglib uri="http://displaytag.sf.net" prefix="display" %>
<html>
`enter code here`
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Forbes Top 10 Richest Sports Stars 2009</title>
<link href="css/displaytag.css" rel="stylesheet" type="text/css" />
</head>
<body>
<h2>Forbes Top 10 Richest Sports Stars 2009</h2>
<display:table export="true" id="data"
name="sessionScope.HomeForm.richSportsmanList"
requestURI="/homeAction.do" pagesize="3">
<display:column property="place" title="Place" sortable="true" />
<display:column property="name" title="Name" sortable="true" />
<display:column property="age" title="Age" sortable="true" />
<display:column property="annualIncome" title="Income(in m/yr)"
sortable="true" />
</display:table>
<p>Note : List is according to Forbes List 2009</p>
</body>
</html>