如何在tpl文件中使用“<! - {if $ smarty.get”来获取url上的一些单词 - >

时间:2013-09-07 06:06:07

标签: url if-statement smarty

在tpl文件(header.tpl)上我想编写一个代码,它将改变按钮(每个包含不同的链接),这将依赖于几个不同的url设置。例如,

example.com/usa.php
example.com/uk.php
example.com

header.tpl
<!--▼HEADER-->
<!--{if $smarty.get.page == "usa"}-->
<a href="<!--{$smarty.const.HTTPS_URL}-->baseball.php" ><img src="baseball_button" ></a>

<!--{else}--><!--{if $smarty.get.page == "uk"}-->
<a href="<!--{$smarty.const.HTTPS_URL}-->soccer.php" ><img src="soccer_button" ></a>
<!--{else}--> 
<a href="<!--{$smarty.const.HTTPS_URL}-->sumo.php" ><img src="sumo_button" ></a>
<!--{/if}-->
<!--{/if}-->
<!--▲HEADER-->

有人能告诉我做上述事情的正确方法吗?

关于上述情况,如果部件不起作用,并且始终显示底部按钮,即sumo_button。

0 个答案:

没有答案