點選標題下拉展開二級子標題導航選單

admin發表於2017-04-07

本章節分享一段程式碼例項,它實現了滑鼠點選標題能夠下拉展開二級子標題效果。

程式碼例項如下:

[HTML] 純文字檢視 複製程式碼執行程式碼
<!DOCTYPE html>
<html>
<head>
<meta charset=" utf-8">
<meta name="author" content="http://www.softwhy.com/" />
<title>螞蟻部落</title>
<style type="text/css">#menu{width:300px;}
.has_children{
  background:#555;
  color:#fff;
  cursor:pointer;
}
.highlight{
  color:#fff;
  background :green;
}
div{padding:0;}
div a{
  background:#888;
  display:none;
  float:left;
  width:300px;
}
</style>
<script src="http://libs.baidu.com/jquery/1.9.0/jquery.js"></script>
<script type="text/javascript">
$(document).ready(function(){
  $(".has_children").click(function(){
    $(this).addClass("highlight")
    .children("a").show().end()
    .siblings().removeClass("highlight")
    .children("a").hide();
  });
});
</script>
</head>
<body>
<div id="menu">
  <div class="has_children">
    <span>div css教程</span>
    <a>第一章節</a>
    <a>第二章節</a>
    <a>第三章節</a>
  </div>
  <div class="has_children">
    <span>javascript教程</span>
    <a>第一章節</a>
    <a>第二章節</a>
    <a>softwhy.com</a>
  </div>
  <div class="has_children">
    <span>正規表示式教程</span>
    <a>第一章節</a>
    <a>第二章節</a>
    <a>第三章節</a>
  </div>
</div>
</body>
</html>

上面的程式碼實現了我們的要求,下面介紹一下它的實現過程。

一.程式碼註釋:

(1).$(document).ready(function(){}),當文件機構載入完畢再去執行函式中的程式碼。

(2).$(".has_children").click(function(){}),為具有處class屬性值為has_children註冊click事件處理函式。

(3).$(this).addClass("highlight"),為當前元素增加highlight類。

(4).children("a").show().end(),將子節點的a元素顯示出來並重新定位到上次操作的元素。

(5).siblings().removeClass("highlight"),獲取元素的兄弟元素,並去掉他們的highlight類。

(6).children("a").hide(),將兄弟元素下的a元素隱藏。

二.相關閱讀:

(1).addClass()參閱jQuery addClass()一章節。

(2).children()參閱jQuery children()一章節。

(3).siblings()參閱jQuery siblings()一章節。

(4).end()參閱jQuery end()一章節。

(5).removeClass()參閱jQuery removeClass()一章節

相關文章