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.
我正在使用开源 PHP CMS,我可以按菜单项显示/隐藏侧面模块。我遇到的问题是我想在不属于菜单项的页面上显示/隐藏模块(即注册过程中的第 2 步),这不是 CMS 提供的功能。
如何通过 url 参数显示/隐藏 css 类?
你可以通过 $_GET 做到这一点
<?php if(isset($_GET['param']) && $_GET['param'] ==youwant){ ?> //css <?php } ?>
相当容易
`.CLASSNAME { 显示:无 }