Apply a specific class/id to current page on menu (PHP)(将特定的类/ID 应用于菜单上的当前页面 (PHP))
问题描述
我有一个这样的菜单:
<a href="http://domain.com/folder/biography"><img style="blahblah" src="blahblahblahblah"></a><a href="http://domain.com/folder/contacts"><img style="blahblah" src="blahblahblahblah"></a><a href="http://domain.com/folder/gallery"><img style="blahblah" src="blahblahblahblah"></a><a href="http://domain.com/folder/dontknow"><img style="blahblah" src="blahblahblahblah"></a>我想要一些可以自动将 class="current" 添加到我当前所在页面的内容.链接(如您在上面的代码中所见)类似于 domain.com/folder/biography 或 domain.com/folder/contacts,所以没有 .php/.html 等
我尝试过:
<a <?php if (strpos($_SERVER['PHP_SELF'], 'biography')) echo 'class="current"';?>href="http://domain.com/folder/biography"><img style="blahblah" src="blahblahblahblah"></a><a <?php if (strpos($_SERVER['PHP_SELF'], 'contacts')) echo 'class="current"';?>href="http://domain.com/folder/contacts"><img style="blahblah" src="blahblahblahblah"></a>......但它不起作用......带strops的解决方案似乎可行,可能我做错了......:P
你应该:
- 用
!== false检查strpos()的结果. - 使用
$_SERVER['REQUEST_URI']而不是$_SERVER['PHP_SELF']. - 将代码包装在函数中.
像这样:
<div id="blahblah" style="blahblah"><a <?php get_current('biography') ?>href="http://domain.com/folder/biography"><img style="blahblah" src="blahblahblahblah"></a><a <?php get_current('contacts') ?>href="http://domain.com/folder/contacts"><img style="blahblah" src="blahblahblahblah"></a>......I have a menu like this:
<div id="blahblah" style="blahblah">
<a href="http://domain.com/folder/biography"><img style="blahblah" src="blahblahblahblah"></a>
<a href="http://domain.com/folder/contacts"><img style="blahblah" src="blahblahblahblah"></a>
<a href="http://domain.com/folder/gallery"><img style="blahblah" src="blahblahblahblah"></a>
<a href="http://domain.com/folder/dontknow"><img style="blahblah" src="blahblahblahblah"></a>
</div>
I'd like to have something that automatically adds a class="current" to the page I'm currently in. Links (as you can see in the code above) are like domain.com/folder/biography or domain.com/folder/contacts, so without .php/.html, etc.
I tried with:
<div id="blahblah" style="blahblah">
<a <?php if (strpos($_SERVER['PHP_SELF'], 'biography')) echo 'class="current"';?> href="http://domain.com/folder/biography"><img style="blahblah" src="blahblahblahblah"></a>
<a <?php if (strpos($_SERVER['PHP_SELF'], 'contacts')) echo 'class="current"';?> href="http://domain.com/folder/contacts"><img style="blahblah" src="blahblahblahblah"></a>
...
...
</div>
But it doesn't work... the solution with strops seems viable, probably I'm doing it wrong.. :P
You should:
- check the result of
strpos()with!== false. - Use
$_SERVER['REQUEST_URI']rather than$_SERVER['PHP_SELF']. - Wrap the code inside a function.
Something like this:
<?php
function get_current($name) {
if (strpos($_SERVER['REQUEST_URI'], $name) !== false)
echo 'class="current"';
}
?>
<div id="blahblah" style="blahblah">
<a <?php get_current('biography') ?> href="http://domain.com/folder/biography"><img style="blahblah" src="blahblahblahblah"></a>
<a <?php get_current('contacts') ?> href="http://domain.com/folder/contacts"><img style="blahblah" src="blahblahblahblah"></a>
...
...
</div>
这篇关于将特定的类/ID 应用于菜单上的当前页面 (PHP)的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:将特定的类/ID 应用于菜单上的当前页面 (PHP)
基础教程推荐
- 在PHP中根据W3C规范Unicode 2022-01-01
- 如何在 Laravel 5.3 注册中添加动态下拉列表列? 2021-01-01
- PHP PDO MySQL 查询 LIKE ->多个关键词 2021-01-01
- 有什么方法可以用编码 UTF-8 而不是 Unicode 返回 PHP`json_encode`? 2021-01-01
- 学说 dbal querybuilder 作为准备好的语句 2022-01-01
- YouTube API v3 点赞视频,但计数器不增加 2022-01-01
- Cron Jobs 调用带有变量的 PHP 脚本 2022-01-01
- 如何替换eregi() 2022-01-01
- PHP 类:全局变量作为类中的属性 2021-01-01
- 如何在 Laravel 中使用 React Router? 2022-01-01
