stl:pageItems 翻页项容器

通过 stl:pageItems 标签在模板中插入翻页项的容器,当不需要翻页时容器内的内容不显示

stl:pageItems 标签示例

示例一:显示翻页项组合

下面的例子显示组合了所有翻页标签的翻页项容器。

<stl:pageItems>
<table width="100%">  
<tr><td align="left">  
  <stl:pageItem type="FirstPage" text="首页"></stl:pageItem> |    
  <stl:pageItem type="PreviousPage" text="上一页"></stl:pageItem> |    
  <stl:pageItem type="NextPage" text="下一页"></stl:pageItem> |    
  <stl:pageItem type="LastPage" text="末页"></stl:pageItem>  
</td><td align="right">  
  <stl:pageItem type="CurrentPageIndex" text="当前页:"></stl:pageItem>      
  <stl:pageItem type="PageNavigation"></stl:pageItem>  
</td></tr>
</table>
</stl:pageItems>

解析后的HTML代码: