Discuz!官方免费开源建站系统

 找回密码
 立即注册

QQ登录

只需一步,快速开始

搜索

[疑问] 为什么我做的下拉菜单被被下边框架挡住了,怎么处理呢?

[复制链接]
urlcn 发表于 2009-12-27 13:29:08 | 显示全部楼层 |阅读模式
本帖最后由 urlcn 于 2009-12-27 14:21 编辑

为什么我做的下拉菜单被被下边框架挡住了,怎么处理呢?请高手们帮帮忙吧!!


以下是代码:

js代码:
  1. function menuFix() {
  2.     var sfEls = document.getElementById("nav").getElementsByTagName("li");
  3.     for (var i=0; i<sfEls.length; i++) {
  4.         sfEls[i].onmouseover=function() {
  5.         this.className+=(this.className.length>0? " ": "") + "sfhover";
  6.         }
  7.         sfEls[i].onMouseDown=function() {
  8.         this.className+=(this.className.length>0? " ": "") + "sfhover";
  9.         }
  10.         sfEls[i].onMouseUp=function() {
  11.         this.className+=(this.className.length>0? " ": "") + "sfhover";
  12.         }
  13.         sfEls[i].onmouseout=function() {
  14.         this.className=this.className.replace(new RegExp("( ?|^)sfhover\\b"),
  15. "");
  16.         }
  17.     }
  18. }
  19. window.onload=menuFix;
复制代码
common.css
  1. /* header style */
  2. #header { width:960px; height:80px; background:url(../images/headerbg.jpg) no-repeat; overflow:hidden; margin:0px auto; }
  3.         #header h2 { float:left; }
  4.                 #header h2 img { width:250px; height:80px; }
  5.                 #header .ad_header { float:right; text-align:right; }

  6. /*下拉菜单样式*/
  7. *{margin:0;padding:0;border:0;}
  8. #div_center { width:960px; height:23px; background:#003399; margin-left: auto;margin-right:auto;}  /*定义总体宽度、高度;background:003399; 控制背景颜色,居中对齐*/
  9. #nav { line-height: 20px; list-style-type: none; margin-top:5px;}         /*控制一级菜单行高;上边距5px;*/   
  10. #nav a { display: block; width: 77px; text-align:center; font-size:12px;} /*一级菜单链接总体样式:每个菜单的宽,居中对齐,文字大小*/
  11. #nav a:link  { color:#FFF; text-decoration:none;margin:0;}     /* 未访问的链接 */   
  12. #nav a:visited  {color:#FFF;text-decoration:none;margin:0;}    /* 已访问的颜色 */  
  13. #nav a:hover {color:#C00;text-decoration:none;}                /* 鼠标在链接上 */
  14. #nav li {float: left;}                   /* 一级菜左对齐 */
  15. #nav li a:hover{background:#FFFFFF;}     /* 鼠标在一级菜单上改变其背景色 */
  16. #nav li ul {line-height: 24px; background:#FFF; list-style-type: none;text-align:left;left: -999em; width:132px; position: absolute;border-width: 1px;border-top-style: none;border-right-style: solid;border-bottom-style: solid;border-left-style: solid;border-color: #003399; padding:1px;}             /*二级菜单总体样式:行高24px;背景颜色;外框宽度;相对位置;边框一个象素,上边没样式,左右下边实线,边框颜色#003399;内边距1个象素*/
  17. #nav li ul a{display:block; width: 130px;text-align:left;padding-left:2px;}                 /* 二级菜单链接样式;背景宽度、左对齐,左缩进2 */
  18. #nav li ul a:link  {color:#0d5097; text-decoration:none;}                                   /* 未访问的链接 */
  19. #nav li ul a:visited  {color:#0d5097;text-decoration:none;}                                 /* 已访问的链接 */
  20. #nav li ul a:hover  {color:#FFF;text-decoration:none;font-weight:normal;background:#003399;}/* 鼠标在链接上 */
  21. #nav li:hover ul {left: auto;}
  22. #nav li.sfhover ul {left: auto;}
  23. #content {clear: left;}
复制代码
header.html.php
  1. <body>
  2. <div id="append_parent"></div>
  3. <div id="ajaxwaitid"></div>
  4. <div id="header">
  5.         <h2><a href="{S_URL}"><img src="{S_URL}/templates/default/images/logo.gif" alt="$_SCONFIG[sitename]" /></a></h2>
  6. <!--{/if}-->
  7. <!--{eval $ads = getad('system', 'indexad', '1'); }-->
  8. <!--{if !empty($ads['pageheadad']) }-->
  9.         <div class="ad_header">$ads[pageheadad]</div>
  10. <!--{/if}-->
  11. </div><!--header end-->
  12. <div id=div_center>
  13. <UL id=nav>
  14. <LI style="MARGIN-LEFT: 10px"><A href="http://#">网站首页</A></LI>
  15. <LI><A href="http://#">新闻中心</A>
  16. <UL>
  17. <LI><A href="http://#">·新闻中心1</A></LI>
  18. <LI><A href="http://#">·新闻中心2</A></LI>
  19. <LI><A href="http://#">·新闻中心3</A></LI></UL></LI>
  20. <LI><A href="http://#">企业简介</A>
  21. <UL>
  22. <LI><A href="http://#">·企业简介1</A></LI>
  23. <LI><A href="http://#">·企业简介2</A></LI>
  24. <LI><A href="http://#">·企业简介3</A></LI>
  25. <LI><A href="http://#">·企业风采4</A></LI>
  26. <LI><A href="http://#">·企业简介5</A></LI>
  27. <LI><A href="http://#">·企业简介6</A></LI></UL></LI>
  28. <LI><A href="http://#">文章中心</A>
  29. <UL>
  30. <LI><A href="http://#">·文章中心</A></LI>
  31. <LI><A href="http://#">·文章中心</A></LI>
  32. <LI><A href="http://#">·文章中心</A></LI>
  33. <LI><A href="http://#">·文章中心</A></LI>
  34. <LI><A href="http://#">·文章中心</A></LI></UL></LI>
  35. <LI><A href="http://#">国际新闻</A>
  36. <UL>
  37. <LI><A href="http://#">·国际新闻</A></LI>
  38. <LI><A href="http://#">·国际新闻</A></LI>
  39. <LI><A href="http://#">·国际新闻</A></LI>
  40. <LI><A href="http://#">·国际新闻</A></LI>
  41. <LI><A href="http://#">·国际新闻</A></LI>
  42. <LI><A href="http://#">·国际新闻</A></LI>
  43. <LI><A href="http://#">·国际新闻</A></LI>
  44. <LI><A href="http://#">·国际新闻</A></LI></UL></LI>
  45. <LI><A href="http://#">图片中心</A>
  46. <UL>
  47. <LI><A href="http://#">·图片中心</A></LI>
  48. <LI><A href="http://#">·图片中心</A></LI>
  49. <LI><A href="http://#">·图片中心</A></LI></UL></LI>
  50. <LI><A href="http://#">下载中心</A>
  51. <UL>
  52. <LI><A href="http://#">·常用软件</A></LI>
  53. <LI><A href="http://#">·文档下载</A></LI>
  54. <LI><A href="http://#">·资料下载</A></LI></UL></LI>
  55. <LI><A href="http://#">留言中心</A></LI>
  56. <LI><A href="http://#">社区论坛</A></LI></UL>
  57. </div>
复制代码
您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

手机版|小黑屋|Discuz! 官方站 ( 皖ICP备16010102号 )star

GMT+8, 2024-11-18 04:34 , Processed in 0.023357 second(s), 3 queries , Gzip On, Redis On.

Powered by Discuz! X3.4

Copyright © 2001-2023, Tencent Cloud.

快速回复 返回顶部 返回列表