我正在使用 jQuery 内容面板切换器https://code.google.com/p/jquery-content-panel-switcher/
通过添加“显示”类,您可以确定加载时显示哪些内容/面板,但我如何使其反映在选择内容/面板的链接中。
基本上,如果显示面板 1,则链接 1 应该是红色的。
点击后我已经在使用它来更改链接
$(document).ready(function(){
$('.nav_buttons a').click(function(event){
$('.nav_buttons a').css({ 'background-color' : '' }); //clear past selections
$(this).css({ 'background-color' : 'red' }); //set new selection
});
});