溫馨提示×

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

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

使用jQuery實(shí)現(xiàn)簡(jiǎn)單的tab框?qū)嵗?/h1>
發(fā)布時(shí)間:2020-10-04 11:50:33 來(lái)源:腳本之家 閱讀:112 作者:jingxian 欄目:web開(kāi)發(fā)

html代碼

<!DOCTYPE html>
<html>
<head>
 <meta charset="utf-8">
 <meta http-equiv="X-UA-Compatible" content="IE=edge">
 <title>實(shí)現(xiàn)簡(jiǎn)單的tab框</title>
 <link rel="stylesheet" href="css/tabDemo.css" rel="external nofollow" >
 <script type="text/javascript" src="js/jquery.min.js"></script>
 <script type="text/javascript" src="js/tabDemo.js"></script>
</head>
<body>
 <ul class="main">
 <li class="style1">休閑裝</li>
 <li>名媛</li>
 <li>運(yùn)動(dòng)服</li>
 </ul>
 <ul class="sublevel">
 <li class="style2">女裝 男裝 童裝</li>
 <li>甜美風(fēng) 文藝風(fēng)</li>
 <li>運(yùn)動(dòng)男 運(yùn)動(dòng)女</li>
 </ul>
</body>
</html>

css代碼

* {
 margin: 0;
 padding: 0px;
}
ul {
 width: 300px;
 margin: 10px auto;
}
ul li {
 list-style: none;
}
.main li {
 text-align: center;
 float: left;
 padding: 5px;
 margin-left: 10px;
 width: 80px;
 cursor: pointer;
 background-color: #f3f2e7;
}
.main .style1 {
 width: 50px;
 font-weight: bold;
 background-color: #f3f2e7;
 border: 1px solid #837979;
 border-bottom: 0;
 z-index: 100;
 position: relative;
}
.sublevel {
 width: 260px;
 height: 80px;
 padding: 19px;
 background-color: #f3f2e7;
 clear: left;
 border: 1px solid #837979;
 position:relative;
 top: -1px;
}
.sublevel li{
 display: none;
}
.sublevel .style1{
 display: block;
}

jquery代碼

$(function () {
 //頁(yè)面打開(kāi)時(shí) 呈現(xiàn)的效果
 $(".sublevel li:eq(0)").show();
 //each遍歷輸出
 $(".main li").each(function(index) {
  //click 點(diǎn)擊
  $(this).click(function() {
    //addClass()增加當(dāng)前樣式      removeClass()移除除當(dāng)前點(diǎn)擊之外的同級(jí)樣式
   $(this).addClass("main style1").siblings().removeClass("style1");
   $(".sublevel li:eq("+index+")").show().siblings().hide();
  })
 })
})


以上這篇使用jQuery實(shí)現(xiàn)簡(jiǎn)單的tab框?qū)嵗褪切【幏窒斫o大家的全部?jī)?nèi)容了,希望能給大家一個(gè)參考,也希望大家多多支持億速云。

向AI問(wèn)一下細(xì)節(jié)

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

AI