有谁知道如何检查href是否等于smarty中的当前页面链接?我想在菜单中为链接添加“活动”类。 我的代码就是这样的
<div id="navigation-menu">
<a href="index.php" class="active">Home</a>
<a href="index.php?page=how_it_works">How it Works</a>
<a href="index.php?page=prices">Prices</a>
</div>
答案 0 :(得分:3)
认为你可以做类似的事情:
<div id="navigation-menu">
<a href="index.php"{if $smarty.get.page eq ''} class="active"{/if}>Home</a>
<a href="index.php?page=how_it_works"{if $smarty.get.page eq 'how_it_works'} class="active"{/if}>How it Works</a>
<a href="index.php?page=prices"{if $smarty.get.page eq 'prices'} class="active"{/if}>Prices</a>
</div>
但不确定,不知道聪明。