复制代码 代码如下: 选项卡 <BR><!-- <BR>* { margin:0; padding:0; font-size:12px; font-weight:normal; } <BR>.jj { font-weight:bolder!important; } <BR>.box { border-top-color:#c00!important; } <BR>.pr { color:#060!important; } <BR>#tab01 { position:relative; width:336px; height:88px; padding-top:15px; margin:50px; overflow:hidden; } <BR>#tab01 h3 { position:relative; z-index:2; float:left; height:14px; padding:0 7px 0 8px; margin-left:-1px; border-left:solid 1px #ccc; border-right:solid 1px #fff; text-align:center; background:#fff; cursor:pointer; } <BR>#tab01 h3.up { height:18px; padding:5px 7px 0 7px; margin:-6px 0 0 0; border:solid #ccc; border-width:1px 1px 0; color:#c00; } <BR>#tab01 div { display:none; position:absolute; left:0; top:32px; z-index:1; width:324px; height:54px; padding:5px; border:solid 1px #ccc; color:#666; } <BR>#tab01 div.up { display:block; } <BR>#tab02 { position:relative; width:200px; margin:50px; border:solid #ccc; border-width:0 1px 1px; } <BR>#tab02 h4 { height:18px; line-height:18px; border:solid #ccc; border-width:1px 0; margin-bottom:-1px; text-align:center; background:#f6f6f6; cursor:pointer; } <BR>#tab02 h4.up { color:#c00; } <BR>#tab02 ol { display:none; height:54px; padding:5px; color:#666; } <BR>#tab02 ol.up { display:block; } <BR>#tab03 { position:relative; width:100px; margin:50px; } <BR>#tab03 h3 { position:relative; z-index:1; height:16px; padding-top:4px; margin-bottom:-1px; border:solid #ccc; border-width:1px 0 1px 1px; text-align:center; font-family:宋体; background:#eee; cursor:pointer; } <BR>#tab03 h3.up { z-index:3; color:#c00; background:#fff; } <BR>#tab03 div.tab { display:none; position:absolute; left:99px; top:0; z-index:2; width:300px; height:200px; padding:5px; border:solid 1px #ccc; color:#666; } <BR>#tab03 div.tab.up { display:block; } <BR>--> <BR> 首页 嘿嘿,无视div原始class值。 测试 继续无视h3原始class值。 无聊 h3没有值也可以~ 傻蛋 div没有值一样可以~ 首页 嘿嘿,无视容器原始class值。 测试 继续无视h3原始class值。 无聊 h3没有值也可以~ 傻蛋 div没有值一样可以~ 首页 嘿嘿,无视h3原始class值。 测试 继续无视div原始class值。 无聊 h3没有值也可以~ 傻蛋 class值相似一样也可以~ 指定class后,即时再多一个div也行。 <BR><!-- <BR>function Pid(id,tag){ <BR>if(!tag){ <BR>return document.getElementById(id); <BR>} <BR>else{ <BR>return document.getElementById(id).getElementsByTagName(tag); <BR>} <BR>} <br><br>function tab(id,hx,box,iClass,s,pr){ <BR>var hxs=Pid(id,hx); <BR>var boxs=Pid(id,box); <BR>if(!iClass){ // 如果不指定class,则: <BR>boxsClass=boxs; // 直接使用box作为容器 <BR>} <BR>else{ // 如果指定class,则: <BR>var boxsClass = []; <BR>for(i=0;i<boxs.length;i++){ <BR>if(boxs[i].className.match(/\btab\b/)){// 判断容器的class匹配 <BR>boxsClass.push(boxs[i]); <BR>} <BR>} <BR>} <BR>if(!pr){ // 如果不指定预展开容器,则: <BR>go_to(0); // 默认展开序列 <BR>yy(); <BR>} <BR>else { <BR>go_to(pr); <BR>yy(); <BR>} <BR>function yy(){ <BR>for(var i=0;i<hxs.length;i++){ <BR>hxs[i].temp=i; <BR>if(!s){// 如果不指定事件,则: <BR>s="onmouseover"; // 使用默认事件 <BR>hxs[i][s]=function(){ <BR>go_to(this.temp); <BR>} <BR>} <BR>else{ <BR>hxs[i][s]=function(){ <BR>go_to(this.temp); <BR>} <BR>} <BR>} <BR>} <BR>function go_to(pr){ <BR>for(var i=0;i<hxs.length;i++){ <BR>if(!hxs[i].tmpClass){ <BR>hxs[i].tmpClass=hxs[i].className+=" "; <BR>boxsClass[i].tmpClass=boxsClass[i].className+=" "; <BR>} <BR>if(pr==i){ <BR>hxs[i].className+=" up"; // 展开状态:标题 <BR>boxsClass[i].className+=" up"; // 展开状态:容器 <BR>} <BR>else { <BR>hxs[i].className=hxs[i].tmpClass; <BR>boxsClass[i].className=boxsClass[i].tmpClass; <BR>} <BR>} <BR>} <BR>} <BR>tab("tab01","h3","div","","onclick",2); tab("tab02","h4","ol");tab("tab03","h3","div","tab"); <BR>//--> <BR>