gpt4 book ai didi

php - 如何在 html/css/js/php 中更改事件菜单项样式

转载 作者:太空宇宙 更新时间:2023-11-04 04:55:06 25 4
gpt4 key购买 nike

我的 html 是这样的

<ul class="navigation">
<li><a href="index.php">Home</a></li>
<li><a href="index.php?content=about">About us</a></li>
</ul>

如您所见,“关于我们”页面的内容已加载到 index.php 中。现在我想更改导航栏上不同样式的事件页面链接。

请帮帮我。我希望这个问题很清楚。

最佳答案

根据选择向特定元素添加类;

<ul class="navigation"> 
<li <?php if(!isset($_GET['content'])) { echo 'class="active"'; } ?>><a href="index.php">Home</a></li>
<li <?php if(isset($_GET['content']) && $_GET['content']=='about') { echo 'class="active"'; } ?>><a href="index.php?content=about">About us</a></li>
</ul>

关于php - 如何在 html/css/js/php 中更改事件菜单项样式,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12645999/

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