<!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">標(biāo)題一</div>
<div class="content hide">內(nèi)容一</div>
<div class="content hide">內(nèi)容一1</div>
</div>
<div class="item">
<div class="header">標(biāo)題二</div>
<div class="content hide">內(nèi)容二</div>
<div class="content hide">內(nèi)容二</div>
</div>
<div class="item">
<div class="header">標(biāo)題三</div>
<div class="content hide">內(nèi)容三</div>
<div class="content hide">內(nèi)容三</div>
</div>
</div>
<script>
$(".header").click(function () {
//當(dāng)前點擊的標(biāo)簽$(this)
//獲取某個標(biāo)簽的下一個標(biāo)簽
//獲取某個標(biāo)簽的父標(biāo)簽
//獲取所有的兄弟標(biāo)簽
//添加樣式和移除樣式
//$('#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>
另外有需要云服務(wù)器可以了解下創(chuàng)新互聯(lián)cdcxhl.cn,海內(nèi)外云服務(wù)器15元起步,三天無理由+7*72小時售后在線,公司持有idc許可證,提供“云服務(wù)器、裸金屬服務(wù)器、高防服務(wù)器、香港服務(wù)器、美國服務(wù)器、虛擬主機、免備案服務(wù)器”等云主機租用服務(wù)以及企業(yè)上云的綜合解決方案,具有“安全穩(wěn)定、簡單易用、服務(wù)可用性高、性價比高”等特點與優(yōu)勢,專為企業(yè)上云打造定制,能夠滿足用戶豐富、多元化的應(yīng)用場景需求。
當(dāng)前題目:jQuery之篩選器(TAB菜單實例)-創(chuàng)新互聯(lián)
網(wǎng)頁鏈接:http://chinadenli.net/article24/cdjeje.html
成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供網(wǎng)站策劃、ChatGPT、企業(yè)建站、搜索引擎優(yōu)化、響應(yīng)式網(wǎng)站、網(wǎng)站制作
聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶投稿、用戶轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請盡快告知,我們將會在第一時間刪除。文章觀點不代表本網(wǎng)站立場,如需處理請聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時需注明來源: 創(chuàng)新互聯(lián)
猜你還喜歡下面的內(nèi)容