Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
<a class="{if $menu eq 1}current{/if}" <a class="{if $menu eq 2}current{/if}" <a class="{if $menu eq 3}current{/if}"
$menu eq 1 是如何工作的?我在哪里可以找到“功能”?
尝试使菜单“突出显示”如果它被选中。
提前致谢!
eq只是一个替代品==
eq
==
请参阅http://www.smarty.net/docsv2/en/language.function.if
eq 等于 PHP 的逻辑 (==) 运算符,它是一个与 PHP 等效的 smarty 模板引擎
例如。
<?php if($menu == 1) { ?> class="current" <?php } ?>