您好,登錄后才能下訂單哦!
本文實(shí)例為大家分享了js實(shí)現(xiàn)QQ列表展開收縮擴(kuò)展展示的具體代碼,供大家參考,具體內(nèi)容如下
效果圖:
代碼:
<html> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title>無標(biāo)題文檔</title> <style> ul,h3{margin:0; padding:0;} li{list-style-type:none;} #list{margin:0 auto; border:#333 solid 1px; width:250px;} #list h3 {background: url(../img/ico1.gif) no-repeat 5px 14px #0C6; text-indent:20px; height:32px; line-height:32px;} #list ul li{text-indent:25px; border-bottom:#333 solid 1px; line-height:24px; height:23px; } #list .active{background: url(../img/ico2.gif) no-repeat 5px 14px #693; text-indent:20px; height:30px; line-height:30px;} #list ul{display:none;} .hover{background:#CFC;} </style> <script> window.onload = function(){ var oUl = document.getElementById("list"); var aUl =oUl.getElementsByTagName("ul"); var aH2 = oUl.getElementsByTagName("h3"); var aLi = null; var arrLi = []; var that = null; for(i=0;i<aH2.length;i++){ aH2[i].index = i; aH2[i].onclick = function(){ if(this.className==''){ for(i=0;i<aH2.length;i++){ aH2[i].className=''; aUl[i].style.display='none'; } this.className='active'; aUl[this.index].style.display = 'block'; }else{ this.className=''; aUl[this.index].style.display='none'; } } } for(i=0;i<aUl.length;i++){ aLi =aUl[i].getElementsByTagName("li"); for(j=0;j<aLi.length;j++){ arrLi.push(aLi[j]); } } for(var i=0;i<arrLi.length;i++){ arrLi[i].onclick = function(){ for(i=0; i<arrLi.length;i++){ arrLi[i].className=''; } this.className = 'hover'; } } }; </script> </head> <body> <ul id="list"> <li class="lis"> <h3>我的好友</h3> <ul> <li>張三</li> <li>張四</li> <li>張五</li> <li>張六</li> </ul> </li> <li class="lis"> <h3>企業(yè)好友</h3> <ul> <li>李四</li> <li>李小四</li> <li>李四二</li> <li>李毅</li> <li>李二</li> </ul> </li> <li class="lis"> <h3>黑名單</h3> <ul> <li>張三</li> <li>李四</li> </ul> </li> </ul> </body> </html>
以上就是本文的全部內(nèi)容,希望對(duì)大家的學(xué)習(xí)有所幫助,也希望大家多多支持億速云。
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請(qǐng)聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。