在查看页面时,我看到的是:
1) 魔术线脚本根据具有类“current_page_item”的元素确定下划线的宽度。
因为这都是javascript。您需要设置菜单锚点/链接以包含将 current_page_item 类更新为所选项目并将其从前一个项目中删除的 javascript。这也应该更新您的突出显示问题,因为它似乎是 css 样式的。
一个基本的脚本如下所示:
function updateCurrent(e) {
$('.current_page_item').removeClass('current_page_item');
$(e).parent('li').addClass('current_page_item');
}
您所有的锚点都会有一个如下所示的 onClick:
<a href="print.html" onclick="updateCurrent(this);">Print</a>
2)我没有完全理解你第二个问题的要点。当我浏览它时,导航看起来指向正确的内容。
编辑我在下面添加的评论:
$('#topnav li a').click(function(){
// Update the current item.
$('.current_page_item').removeClass('current_page_item');
$(this).parent('li').addClass('current_page_item');
var toLoad = $(this).attr('href')+' #content';
$('#content').hide('fast',loadContent);
window.location.hash = $(this).attr('href').substr(0,$(this).attr('href').length-5);
function loadContent() {
$('#content').load(toLoad,'',showNewContent())
}
function showNewContent() {
$('#content').show('normal',hideLoader());
}
function hideLoader() {
$('#load').fadeOut('normal');
}
return false;
});
编辑第 2 部分:我看到您仍然无法让魔术线忽略您的宽度,您需要做的是在单击锚点时,您在初始加载时应用的相同数学也应该完成。
更新后的魔法线 js 应如下所示:
// DOM Ready
$(function() {
$("#topnav").append("<li id='magic-line'></li>");
// get the left margin of current page item
var marg = parseInt($(".current_page_item a").css("marginLeft"));
/* Cache it */
var $magicLine = $("#magic-line");
$magicLine
.width($(".current_page_item a").width())
.css("left", $(".current_page_item a").position().left + marg)
.data("origLeft", $magicLine.position().left)
.data("origWidth", $magicLine.width());
$("#topnav li").find("a").click(
$el = $(this);
// Do the math for each click
leftPos = $el.position().left + marg;
newWidth = $el.parent().width() - marg;
$magicLine.stop().animate({
left: leftPos,
width: newWidth
});
}, function() {
$magicLine.stop().animate({
left: $magicLine.data("origLeft"),
width: $magicLine.data("origWidth")
});
});
/* Kick IE into gear */
$(".current_page_item_two a").mouseenter();
});