head.htm 全站公共头部判断

隔壁老卢 5月前 639

在做模板的时候,在共用头部文件,经常需要判断当前是哪个页面?

是首页、列表页、内容页、搜索页、标签页?

根据不同的页面编写不同的样式等。

使用比如js部分:

{if:is_home()}
  shouce.css
{elseif:is_cate()}
 list.js
{elseif:is_show()}
 show.js
{elseif:is_search()}
 se.js
{elseif:is_tag()}
 tag.ts
{else}
 *.js
{/if}
判断有两种方法:

{if:$_control == 'index' && $_action == 'index'}
首页
{elseif:$_control == 'cate' && $_action == 'index'}
分类列表页
{elseif:$_control == 'show' && $_action == 'index'}
内容页
{elseif:$_control == 'search' && $_action == 'index'}
搜索结果页
{elseif:$_control == 'tag' && $_action == 'index'}
标签列表页
{else}
其他
{/if}
 

20240518新增:

{if:is_home()}
首页
{elseif:is_cate()}
分类列表页
{elseif:is_show()}
内容页
{elseif:is_search()}
搜索结果页
{elseif:is_tag()}
标签列表页
{else}
其他
{/if}
最新回复 (0)
返回