gpt4 book ai didi

php - 有谁知道如何检查 href 是否等于 smarty 中的当前页面链接?

转载 作者:行者123 更新时间:2023-11-27 22:36:06 25 4
gpt4 key购买 nike

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

最佳答案

认为你可以这样做:

<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>

但不确定,不懂机灵。

关于php - 有谁知道如何检查 href 是否等于 smarty 中的当前页面链接?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13685011/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com