我希望页面上的活动链接具有纯色背景。我想我需要 jQuery 来做到这一点。我试过这段代码,但它不起作用..
<script type="text/javascript">
$(document).ready(function(){
$("#navigation").each(function(){
if($(this).attr('href') == document.URL){
$(this).css("background-Color", "#e9fd99");
}
});
});
</script>
请参阅我的图片以进行澄清:
正如您所看到的 - 根据您在链接上的哪个页面,将有一个保持静态的纯色 BG ..
- - - - - - - - - - - -更新 - - - - - - - - - - - - -
HTML 代码:
<div id="navigation">
<div class="sb_pos">
<ul id="red" class="treeview-red">
<li class="open">
<span class="tree_titles">About</span>
<ul>
<li><span><a href="?page=about_getting_started">Getting Started</a></span></li>
<li><span><a href="?page=about_recruiting_process">Recruiting Process</a></span></li>
<li><span><a href="?page=about_responsibility">Responsibility</a></span></li>
<li><span><a href="?page=about_opportunity">Opportunity</a></span></li>