stl:search 搜索

通过 stl:search 标签在模板中显示搜索结果

stl:search 标签示例3

示例三:自定义载入中、有搜索结果以及无搜索结果模板

<stl:search>
    <stl:loading>
        <div class="alert alert-info" role="alert">
            <strong>提示!</strong> 系统正在搜索中,请稍后...
        </div>
    </stl:loading>
    <stl:yes>
        <stl:pageContents scope="All" pageNum="12">
            <stl:a target="_blank"></stl:a><br />
        </stl:pageContents>
        <br />
        <stl:pageItems>
            <table cellpadding="0" cellspacing="0" width="90%" height="40" align="center">
                <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>
    </stl:yes>
    <stl:no>
        <div class="alert alert-danger" role="alert">
            <strong>抱歉!</strong> 找不到和您的查询相符的项目
        </div>
    </stl:no>
</stl:search>

解析后的HTML代码: