HTML: 기본 콘텐츠를 배치하기 위한 여러 탐색 태그와 div 스크립트: 각 탐색에 해당하는 html을 배열 형식으로 제공 여러 개의 TAB 탭 .nonstop { width:168px; font-size:12px;margin:auto; border:1px solid #cdcdcd; padding:2px; overflow:hidden; } .nonstop span { float:left;_display:inline; cursor:pointer; width:22px; height:14px; background:#cdcdcd url(./img/button.gif) no-repeat -175px top; font-size:10px; line-height:14px; margin:2px 0 0 2px; display:inline; text-align:center; } .nonstop span:hover { background:gray; font-weight:bold } .nonstop div { height:300px; clear:both; border:1px solid #cdcdcd; border-width:2px 1px; margin-left:2px; overflow:hidden; } .nonstop div a { float:left; width:80px; height:40px; background:white; text-align:center; line-height:40px; padding-top:8px; margin:1px 0 0 1px; } .nonstop div a img { border:0; } .nonstop span.hot { border:1px solid red; width:20px; color:white; height:15px; background:red url(./img/button.gif) no-repeat -175px -14px; font-weight:bold; border-bottom:none; } 적응형 너비를 갖춘 다층 TAB 탭(논스톱 너비 테스트 효과를 직접 변경) HTML: 기본 콘텐츠 div를 배치하기 위한 여러 탐색 태그와 하나 Script : 각 네비게이션에 해당하는 html을 배열 형태로 제공 ABCDEFG H나 JMLNO PSTUYZ! 여기에 기본 콘텐츠를 넣으세요. 1 1 1 1 1 1 1 1 [Ctrl A 모두 선택 참고: 외부 J를 도입해야 하는 경우 실행하려면 새로 고쳐야 합니다 ] //20个字母下的品牌,不包含默认显示的内容 var contHtml = ['a1','b2','c3','d4','e5','f6','g7','h21','i22','j23','m24','l25','n26','o27','p11','s12','t13','u14','y15','z16']; var a2zBox = document.getElementById("a2zbox"); var a2zTag = a2zBox.getElementsByTagName("span"); var a2zCont = a2zBox.getElementsByTagName("div")[0]; var divs = [],colN=Math.floor(a2zCont.clientWidth/(a2zTag[0].clientWidth))//7; for(var n=1; n<a2zTag.length/colN; n++){ divs[n-1] = document.createElement("div"); divs[n-1].style.display = "none"; a2zBox.insertBefore(divs[n-1],a2zTag[colN*n]); } divs.push(a2zCont); var hotbox = divs.length-1;//初始内容div ID var hotboxH = a2zCont.clientHeight; //内容div高度 var hotboxHtemp = hotboxH; var time = 50, space = 100;//滑动速度 contHtml.push(a2zCont.innerHTML); function TABS(T){ for( i=0; i<a2zTag.length; i++ ) //a2zTag[i].removeAttribute("class"); a2zTag[i].className=""; a2zTag[T].className = "hot"; var N=Math.ceil((T+1)/colN-1); divs[N].style.cssText = "display:block;border-color:red"; divs[N].innerHTML = contHtml[T]; if(N!=hotbox){ divs[N].style.height = 0; divs[hotbox].style.border = 0 ; var wane = setInterval(function(){ hotboxH -= space; divs[hotbox].style.height = hotboxH + "px"; divs[N].style.height = (hotboxHtemp - hotboxH ) + "px"; if(divs[hotbox].clientHeight < 1){ clearInterval(wane); divs[hotbox].style.cssText = "display:none"; hotbox=N; hotboxH = hotboxHtemp; } },time); } } Function.prototype.bind = function(){var __m = this; var arg = arguments; return function(){ __m.apply(window,arg); } } for( i=0; i<a2zTag.length; i++ ) a2zTag[i].onclick = TABS.bind(i);