站长百科 | 数字化技能提升教程 数字化时代生存宝典
首页
数字化百科
电子书
建站程序
开发
服务器
办公软件
开发教程
服务器教程
软件使用教程
运营教程
热门电子书
WordPress教程
宝塔面板教程
CSS教程
Shopify教程
导航
程序频道
推广频道
网赚频道
人物频道
网站程序
网页制作
云计算
服务器
CMS
论坛
网店
虚拟主机
cPanel
网址导航
WIKI使用导航
WIKI首页
最新资讯
网站程序
站长人物
页面分类
使用帮助
编辑测试
创建条目
网站地图
站长百科导航
站长百科
主机侦探
IDCtalk云说
跨境电商导航
WordPress啦
站长专题
网站推广
网站程序
网站赚钱
虚拟主机
cPanel
网址导航专题
云计算
微博营销
虚拟主机管理系统
开放平台
WIKI程序与应用
美国十大主机
编辑“
Siteserver-stl:searchOutput自定义显示样式
”
人物百科
|
营销百科
|
网赚百科
|
站长工具
|
网站程序
|
域名主机
|
互联网公司
|
分类索引
跳转至:
导航
、
搜索
警告:
您没有登录。如果您做出任意编辑,您的IP地址将会公开可见。如果您
登录
或
创建
一个账户,您的编辑将归属于您的用户名,且将享受其他好处。
反垃圾检查。
不要
加入这个!
<span style="text-align:center; border:1px solid #000; float:right; padding:6px;"><strong>导航:</strong> [[Siteserver二次开发指南|上一页]]</span> <div style="clear:both;"></div> '''stl:searchOutput 自定义显示样式''' *自定义搜索提交表单需要在<stl:searchOutput>中嵌入显示搜索结果的标签,必须包含的标签有<stl:pageContents>和<stl:pageitems>及<stl:pageItem>元素,分别用于显示搜索结果分页列表和搜索结果翻页项。 '''注意:''' * <stl:searchOutput>内必须包含一个<stl:pageContents>元素,用于显示搜索结果内容列表,详情请参考<stl:pageContents>元素。 * <stl:searchOutput>内必须包含一个<stl:pageitems>元素和多个<stl:pageItem>元素,用于显示翻页项,详情请参考<stl:pageItems>元素及<stl:pageItem>元素。 * <stl:searchOutput>中除以上元素外可以添加任意[[Html]]元素或STL元素,用于组织显示样式。 '''stl:searchOutput 示例''' *示例一:采用默认方式显示搜索结果 <pre> <stl:searchOutput pageNum="12" width="500"></stl:searchOutput> <stl:searchOutput pageNum="12" width="500"></stl:searchOutput> </pre> *示例二:采用自定义方式显示搜索结果,搜索结果关键字高亮显示 <pre> <stl:searchOutput width="500" isHighlight="true"> <stl:pageContents scope="All" pageNum="12"> <div> <stl:a target="_blank"></stl:a><br /> <stl:content type="Content" isClearTags="true" wordNum="120"></stl:content> </div> </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:searchOutput> <stl:searchOutput width="500" isHighlight="true"> <stl:pageContents scope="All" pageNum="12"> <div> <stl:a target="_blank"></stl:a><br /> <stl:content type="Content" isClearTags="true" wordNum="120"></stl:content> </div> </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:searchOutput> </pre> *示例三:自定义搜索结果及无搜索内容时提示 <pre> <stl:searchOutput width="500"> <stl:successTemplate> <stl:pageContents scope="All" pageNum="12"> <stl:a target="_blank"></stl:a> </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:successTemplate> <stl:failureTemplate> <table width="90%" cellspacing="2" cellpadding="2" border="0"><tbody><tr><td align="center"> 抱歉,找不到和您的查询相符的项目。</td></tr></tbody></table> </stl:failureTemplate> </stl:searchOutput> <stl:searchOutput width="500"> <stl:successTemplate> <stl:pageContents scope="All" pageNum="12"> <stl:a target="_blank"></stl:a> </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:successTemplate> <stl:failureTemplate> <table width="90%" cellspacing="2" cellpadding="2" border="0"><tbody><tr><td align="center"> 抱歉,找不到和您的查询相符的项目。</td></tr></tbody></table> </stl:failureTemplate> </stl:searchOutput> </pre> 示例一的页面效果如图: [[Image:Siteserver-05.gif]] ==参考资料== *[http://help.siteserver.cn SiteServer官方] [[category:SiteServer|S]]
摘要:
请注意,您对站长百科的所有贡献都可能被其他贡献者编辑,修改或删除。如果您不希望您的文字被任意修改和再散布,请不要提交。
您同时也要向我们保证您所提交的内容是您自己所作,或得自一个不受版权保护或相似自由的来源(参阅
Wordpress-mediawiki:版权
的细节)。
未经许可,请勿提交受版权保护的作品!
取消
编辑帮助
(在新窗口中打开)