本帖最后由 popuppp 于 2011-8-28 14:14 编辑
如图,分为多个地区的添加以下代码,添加方法与一楼一样。只是添加的代码不同。
- <!--公务员导航切换开始-->
- <style type="text/css">
- #city *{ margin:0;padding:0; z-index:1000000; top:0;left:0px; float:left;}
- #warpper{ position: relative; z-index:1000000; margin-top:5px;}
- #city { font:normal 12px Verdana, Arial, Helvetica, sans-serif; text-align:center; z-index:1000000;}
- #city a{ cursor:pointer; color:#666}
- #city dl{ height:18px; line-height:18px; padding:0 10px;}
- #city dt,.normal{ float:left; padding:0 10px 0 0 ; border-right:0px solid #ccc; text-decoration:none; width:auto; cursor:pointer; color:#FF3300; font-weight:bold;}
- #city dt.over{ position:relative;padding:0 10px 0px 0px; z-index:1000001;color:#FF3300; font-weight:bold; height:20px; }
- #city li{ float:left; list-style-type:none; margin:0px 5px; width:270px;}
- #city #c1 li a{ float:left; list-style-type:none; margin:0px 3px; 0 0 }
- #city dl dd{ position:absolute; width:270px; left:0;top:20px!important; border:1px solid #bbb; background:#fff; filter:progid:DXImageTransform.Microsoft.Shadow(Strength=4, Direction=120, color=#cccccc); padding:3px 0;}
- .block{ display:block;}
- .none{ display:none;}
- </style>
- <script language="javascript">
- function $(str){ return document.getElementById(str);}
- function $$(str){ return document.getElementsByTagName(str);}
- var timer;
- function changeMenu(thisObj,num){
- if(thisObj.className=="over") return false;
- hids(thisObj);
- thisObj.className="over";
- $("c"+(num+1)).className="block";
- $("c"+(num+1)).onmouseover=function(){clearTimeout(timer);}
- $("c"+(num+1)).onmouseout=function(){timer=setTimeout(function(){hids(thisObj);},500)}
- thisObj.onmouseout=function(){timer=setTimeout(function(){hids(thisObj);},3000)}
- }
- function hids(thisObj){
- clearTimeout(timer);
- var tabObj=thisObj.parentNode.getAttribute("id");
- var obj_dt=$(tabObj).getElementsByTagName("dt");
- for(var i=0;i<obj_dt.length;i++){
- obj_dt[i].className="normal";
- $("c"+(i+1)).className="none";
- }
- }
- </script>
- <div id="city">
- <dl id="warpper">
- <dt onMouseOver="changeMenu(this,0);">[全国其他省市公考论坛]</dt>
- <dd id="c1" class="none">
- <ul>
- <li>
- <STRONG>华东地区</STRONG> <A href="forum-20-1.html">上海</A> <A href="forum-21-1.html">江苏</A> <A href="forum-23-1.html">浙江</A> <A href="forum-41-1.html">安徽</A> <A href="forum-24-1.html">福建</A> <A href="forum-25-1.html"> 江西</A> <A href="forum-19-1.html">山东</A>
- <STRONG>华东地区</STRONG> <A href="forum-20-1.html">上海</A> <A href="forum-21-1.html">江苏</A> <A href="forum-23-1.html">浙江</A> <A href="forum-41-1.html">安徽</A> <A href="forum-24-1.html">福建</A> <A href="forum-25-1.html"> 江西</A> <A href="forum-19-1.html">山东</A>
- <STRONG>华东地区</STRONG> <A href="forum-20-1.html">上海</A> <A href="forum-21-1.html">江苏</A> <A href="forum-23-1.html">浙江</A> <A href="forum-41-1.html">安徽</A> <A href="forum-24-1.html">福建</A> <A href="forum-25-1.html"> 江西</A> <A href="forum-19-1.html">山东</A>
- <STRONG>华东地区</STRONG> <A href="forum-20-1.html">上海</A> <A href="forum-21-1.html">江苏</A> <A href="forum-23-1.html">浙江</A> <A href="forum-41-1.html">安徽</A> <A href="forum-24-1.html">福建</A> <A href="forum-25-1.html"> 江西</A> <A href="javascript:void(null)"><font color="#FFFFFF">待定</font></A>
- <STRONG>华东地区</STRONG> <A href="forum-20-1.html">上海</A> <A href="forum-21-1.html">江苏</A> <A href="forum-23-1.html">浙江</A> <A href="forum-41-1.html">安徽</A> <A href="forum-24-1.html">福建</A> <A href="forum-25-1.html"> 江西</A> <A href="forum-19-1.html">山东</A>
- </li>
- </ul>
- </dd>
- </dl>
- </div>
- <!--公务员导航切换_结束-->
复制代码 注1:width:270px 中的270是整体的宽度,总共两处,内容多的话,修改这里,增加数字或减少数字。
注2:每个分类中的链接及文字要一样多,否则可能出现错位,如果某类别中没有那么多分类,可以添加下面的代码占位,演示中已经添加了,倒数第二行。
<A href="javascript:void(null)"><font color="#FFFFFF">待定</font></A> |