首页 > 语言 > JavaScript > 正文

javascript实现带下拉子菜单的导航菜单效果

2024-05-06 16:20:15
字体:
来源:转载
供稿:网友

这篇文章主要介绍了javascript实现带下拉子菜单的导航菜单效果的方法,涉及javascript操作页面元素与样式的相关技巧,需要的朋友可以参考下

本文实例讲述了javascript实现带下拉子菜单的导航菜单效果。分享给大家供大家参考。具体实现方法如下:

 

 
  1. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" 
  2. "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"
  3. <html xmlns="http://www.w3.org/1999/xhtml"
  4. <head> 
  5. <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> 
  6. <title>带下拉子菜单的导航菜单</title> 
  7. <style type="text/css"
  8. body { font-family: Verdana; font-size: 12px; line-height: 1.5; } 
  9. a { color: #000; text-decoration: none; } 
  10. a:hover { color: #F00; } 
  11. #menu { width:500px; height:28px; margin:0 auto; border-bottom:3px solid #E10001;} 
  12. #menu ul { list-style: none; margin: 0px; padding: 0px; } 
  13. #menu ul li { float:left; margin-left:2px;} 
  14. #menu ul li a { display:block; width:87px; height:28px; line-height:28px; text-align:center; font-size:14px;} 
  15. #menu ul li a#current { font-weight:bold; color:#fff;} 
  16. #menu ul li ul { border:1px solid #ccc; display:none; position:absolute;} 
  17. #menu ul li ul li { float:none; width:87px; background:#eee; margin:0;} 
  18. #menu ul li ul li a { background:none;} 
  19. #menu ul li ul li a:hover { background:#333; color:#fff;} 
  20. #menu ul li:hover ul { display:block;} 
  21. #menu ul li.sfhover ul { display:block;} 
  22. </style> 
  23. <script type="text/javascript"><!-- //--><![CDATA[//><!-- 
  24. function menuFix() { 
  25. var sfEls = document.getElementById("menu").getElementsByTagName("li"); 
  26. for (var i = 0; i < sfEls.length; i++) { 
  27. sfEls[i].onmouseover = function () { 
  28. this.className += (this.className.length > 0 ? " " : "") + "sfhover"
  29. sfEls[i].onMouseDown = function () { 
  30. this.className += (this.className.length > 0 ? " " : "") + "sfhover"
  31. sfEls[i].onMouseUp = function () { 
  32. this.className += (this.className.length > 0 ? " " : "") + "sfhover"
  33. sfEls[i].onmouseout = function () { 
  34. this.className = this.className.replace(new RegExp("( ?|^)sfhover//b"), 
  35. ""); 
  36. window.onload = menuFix; 
  37. //--><!]]> 
  38. </script> 
  39. </head> 
  40. <body> 
  41. <div id="menu"
  42. <ul> 
  43. <li><a id="current" href="#">首页</a></li> 
  44. <li><a href="#">网页版式</a> 
  45. <ul> 
  46. <li><a href="#">自适应宽度</a></li> 
  47. <li><a href="#">固定宽度</a></li> 
  48. </ul> 
  49. </li> 
  50. <li><a href="#">web教程</a> 
  51. <ul> 
  52. <li><a href="#">新手入门</a></li> 
  53. <li><a href="#">视频教程</a></li> 
  54. <li><a href="#">常见问题</a></li> 
  55. </ul> 
  56. </li> 
  57. <li><a href="#">web实例</a></li> 
  58. <li><a href="#">常用代码</a></li> 
  59. </ul> 
  60. </div> 
  61. </body> 
  62. </html> 

希望本文所述对大家的javascript程序设计有所帮助。

发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表

图片精选