我没有成功突出显示我的默认网页,例如:www.mydomain.com。 当它被重定向到index.php和其他菜单链接时它没关系,当它是普通域而没有其他文件我不能。 我写了下面的Jquery只是为了扩大链接的字体大小并将其变为白色:
$(function () {
var path = window.location.href;
path = decodeURIComponent(path);
path =path.substr(path.lastIndexOf("/") +1);
$('#menu a').each(function () {
var href = $(this).attr('href');
href=href.substr(href.lastIndexOf("/") +1);
if (href.indexOf(path) != -1 && path != "") {
$(this).closest('li').find('a').css({'color': 'white' , 'font-size' : '18px' });
}
}); //end of each function
});
HTML标记是:
<div id="menu">
<ul>
<li><a href="$doc_root/index.php" title="Home Page">Home</a></li>
<li><a href="$doc_root/travel/grid.php" title="My Trips">travelling</a></li>
<li><a href="#">images</a></li>
<li><a href="#">words</a></li>
<li><a href="#">about</a></li>
</ul>
</div>
如果只编写域名(www.mydomain.com),如何将我的第一个链接菜单“Home”更改为新的字体和颜色? 我希望它被突出显示,就像选择了index.php一样。 好多了 中号 附:无论是将域名直接重定向到index.php(我一般都知道如何去做,我不知道如何用Aruba做)而且我正在寻找一个不错的“编程”解决方案。
答案 0 :(得分:1)
我认为您应该可以将Home
链接更改为/
,因为index.php
[通常]是默认文档索引名称,可以省略。
另外,考虑到您的示例,我认为使用window.location.pathname
代替window.location.href
会更方便。
#menu a.curpage {
color: white;
font-size: 18px;
}
$('#menu a').each(function() {
if (this.href == window.location.pathname) {
$(this).addClass('curpage');
}
});
如果菜单中只有给定示例中的五个项目,您可以完全避免使用JS,请参阅本主题中的答案:Active Menu Highlight CSS
答案 1 :(得分:1)
在每个页面上,在PHP中设置一个带有该页面名称的变量,因此对于index.php,设置一个值为'home'的变量。对每个单独的菜单项执行此操作。然后在每个页面上加载检查此变量名称并将类添加到相关菜单项。像这样:
<?php
$menuItems = array(
'Home' => array('text' => 'Home', 'url' => '/'),
'Page1' => array('text' => 'Page 1','url' => '/page-1'),
'Page2' => array('text' => 'Page 2', 'url' => '/page-2'),
'Page3' => array('text' => 'Page 3', 'url' => '/page-3'),
'Page4' => array('text' => 'Page 4', 'url' => '/page-4'),
);
?>
<div id="nav">
<ul>
<?php
$miCounter = 1;
foreach($menuItems as $key => $value):
$currentLink = '';
if($pageName === $key):
$currentLink = 'class="selected"';
endif;
?>
<li>
<a <?php echo $currentLink; ?> href="<?php echo $value['url']; ?>">
<?php echo $value['text']; ?>
</a>
</li>
<?php
endforeach;
?>
</ul>
</div>
因此,当您的当前页面为“主页”($pageName
)时,它会将class="selected"
添加到菜单链接中。然后在你的css中创建selected
类所需的任何背景或颜色样式。
答案 2 :(得分:1)
很抱歉碰到一个老话题,但我遇到了同样的问题,我找到了解决方案。
$(document).ready(function() {
$("#menu [href]").each(function() {
if (this.href == window.location.href) {
$(this).addClass("active"); <-- INSERT NAME OF YOUR CLASS
}
if(window.location.href == "http://YOUR-DOMAIN.??/") {
$(window.location.href = "http://YOUR-DOMAIN.??/index.php");
$(this).addClass("active"); <-- INSERT NAME OF YOUR CLASS
}
});
});
它会从http://your-domain.com/重定向到http://your-domain.com/index.php并设置“有效等级”。