2

有谁知道我如何检查 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>
4

1 回答 1

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>

但不确定,不知道smarty。

于 2012-12-03T14:16:29.830 回答