我不确定如何在 PHP 中检查当前页面 - 不过,那将是理想的。
但是,如果您想依赖 JavaScript,我过去曾成功使用过此功能:
function highlightPage(id){
//make sure DOM methods are understood
if(!document.getElementsByTagName) return false;
if(!document.getElementById) return false;
if(!document.getElementById(id)) return false;
var nav = document.getElementById(id);
var links = nav.getElementsByTagName('a');
for (var i=0; i < links.length; i++){
var linkurl = links[i].getAttribute('href');
var currenturl = window.location.href;
//indexOf will return -1 on non-matches, so we're checking for a positive match
if (currenturl.indexOf(linkurl) != -1) {
links[i].className = "here";
var linktext = links[i].lastChild.nodeValue.toLowerCase();
document.body.setAttribute("id",linktext);
}
}
}
并在页面加载时加载函数:
function addLoadEvent(func){
var oldonload = window.onload;
if (typeof window.onload != 'function') {
window.onload = func;
} else {
window.onload = function(){
oldonload();
func();
}
}
}
addLoadEvent(function(){
highlightPage('navigation');
});
这假定您的导航具有“导航”的 ID,但您可以将其更改为您想要的任何内容。该函数只是将一个“here”类附加到当前导航项。
该脚本来自Jeremy Keith 的“DOM Scripting”。