溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務(wù)條款》

jQuery 之 篩選器(TAB菜單實例)

發(fā)布時間:2020-07-25 11:27:27 來源:網(wǎng)絡(luò) 閱讀:297 作者:wx592bc92b285c7 欄目:web開發(fā)

代碼

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>Title</title>
    <script src="jquery3.js"></script>
    <style>
        .header{
            background-color: blue;
        }
        .hide{
            display: none;
        }
    </style>
</head>
<body>
    <div>
        <div class="item">
            <div class="header">標題一</div>
            <div class="content hide">內(nèi)容一</div>
            <div class="content hide">內(nèi)容一1</div>
        </div>
        <div class="item">
            <div class="header">標題二</div>
            <div class="content hide">內(nèi)容二</div>
            <div class="content hide">內(nèi)容二</div>
        </div>
        <div class="item">
            <div class="header">標題三</div>
            <div class="content hide">內(nèi)容三</div>
            <div class="content hide">內(nèi)容三</div>
        </div>
    </div>
    <script>
          $(".header").click(function () {
              //當前點擊的標簽$(this)
              //獲取某個標簽的下一個標簽
              //獲取某個標簽的父標簽
              //獲取所有的兄弟標簽
              //添加樣式和移除樣式
              //$('#i1').addClass('hide')
              //$('#i1').removeClass('hide')
              //篩選器
              // $(this).next()          下一個
              // $(this).prev()          上一個
              // $(this).parent()        父
              // $(this).children()      孩子
              // $(this).siblings()      兄弟
              // $(this).find('#i1')     子子孫孫中查找
              //另外一種刪除hide屬性
              // $(this).next().removeClass('hide');
              //  $(this).next().next().removeClass('hide');
              $(this).siblings().removeClass('hide')
              $(this).parent().siblings().find('.content').addClass('hide')
          })
    </script>
</body>
</html>

展示

jQuery 之 篩選器(TAB菜單實例)

向AI問一下細節(jié)

免責聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI