導航條點擊當前頁面變色

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>無標題文檔</title>
<script type="text/javascript" src="js/jquery-1.4.2.min.js"></script>
<style>
.nav li.action{color:#0C9;}
</style>
</head>
<body>
<ul class="nav">
  <li ><a href="nav.html" class="first" id="page1">首頁</a></li>
  <li ><a href="demo.html" id="page2">我頁面</a></li>
  <li ><a href="goods.html" id="page3">賽事專欄</a></li>
  <li ><a href="jianding.html" id="page4">新聞心</a></li>
  <li ><a href="#" id="page5">興趣心</a></li>
  <li ><a href="#" class="last" id="page6">尋找資源</a></li>
</ul>
<script>
 $(function(){

    /*當前頁面導航高亮*/
    var href = window.location.href.split('/')[window.location.href.split('/').length-1].substr(0,4);
    if(href.length > 0){
        $(function(){
            $("ul.nav a:first[href^='"+href+"']").parent().attr("class","action");
            if($("ul.nav a:first[href^='"+href+"']").size() == 0){
                $("ul.nav a:first[href^='index']").parent().attr("class","action");
            }
        });
    }else{
        $(function(){$("ul.nav a:first[href^='index']").parent().attr("class","action")});
    }
 });
</script>
</body>
</html>

javascript



<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>無標題文檔</title>
<script type="text/javascript" src="js/jquery-1.4.2.min.js"></script>
<style>
.nav li.action{color:#0C9;}
</style>
</head>
<body>
<ul class="nav">
  <li ><a href="nav.html" class="first" id="page1">首頁</a></li>
  <li ><a href="demo.html" id="page2">我頁面</a></li>
  <li ><a href="goods.html" id="page3">賽事專欄</a></li>
  <li ><a href="jianding.html" id="page4">新聞心</a></li>
  <li ><a href="#" id="page5">興趣心</a></li>
  <li ><a href="#" class="last" id="page6">尋找資源</a></li>
</ul>
<script>
 $(function(){

    /*當前頁面導航高亮*/
    var href = window.location.href.split('/')[window.location.href.split('/').length-1].substr(0,4);
    if(href.length > 0){
        $(function(){
            $("ul.nav a:first[href^='"+href+"']").parent().attr("class","action");
            if($("ul.nav a:first[href^='"+href+"']").size() == 0){
                $("ul.nav a:first[href^='index']").parent().attr("class","action");
            }
        });
    }else{
        $(function(){$("ul.nav a:first[href^='index']").parent().attr("class","action")});
    }
 });
</script>
</body>
</html>


html

相關文章
相關標籤/搜索