我希望頁面上的活動鏈接具有穩定的bg顏色。我想我需要jQuery來做到這一點。我想這個代碼,但它不工作..使活動頁面鏈接保持穩固的bg顏色
<script type="text/javascript">
$(document).ready(function(){
$("#navigation").each(function(){
if($(this).attr('href') == document.URL){
$(this).css("background-Color", "#e9fd99");
}
});
});
</script>
見我的圖片澄清:
正如你所看到的 - 這取決於你在哪個頁面鏈接將固定的BG顏色保持靜態..
----------------------- UPDATE ----------- --------------
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>
謝謝大家的建議。我會盡可能地嘗試每一個,並在明天回覆評論。再次感謝支持。 – fyz 2012-07-13 02:40:37