我有一个导航列表:
<ul>
<li><a href="#home">Home</a></li>
<li><a href="#contact">Contact Me</a></li>
</ul>
单击 Home 或 Contact 时,会隐藏或显示相应的 div。
<script>
$("#tabs a").click(function(e){
e.preventDefault();
$(".toggle").hide();
var toShow = $(this).attr('href');
$(toShow).show();
});
</script>
<div id="home" class="toggle" style="display:none"> This is the Home page.</div>
问题
如何在导航列表中显示对应的div时使单词的背景不同?
例如,当显示 div“home”时,导航中的“Home”一词具有蓝色背景。