首页 > 编程 > JavaScript > 正文

js实现点击向下展开的下拉菜单效果代码

2019-11-20 11:37:44
字体:
来源:转载
供稿:网友

本文实例讲述了js实现点击向下展开的下拉菜单效果代码。分享给大家供大家参考。具体如下:

这里介绍js实现点击向下展开的下拉菜单特效代码,无调用jQuery,真正的JS下拉菜单,兼容性方面未做测试,觉得有用处的自己测试修正吧,本文仅提供基础的代码供参考。

运行效果截图如下:

在线演示地址如下:

http://demo.VeVB.COm/js/2015/js-click-show-down-menu-style-codes/

具体代码如下:

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN""http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"><html xmlns="http://www.w3.org/1999/xhtml"><head><meta http-equiv="Content-Type" content="text/html; charset=utf-8" /><title>下拉菜单</title><style type="text/css">*{margin:0; padding:0}#nav{width:200px; margin:50px}#nav h3{ cursor:pointer; line-height:30px; height:30px; background-color:#000000; color:#fff}#nav a{display:block; line-height:24px;color:#666666}#nav a:hover{background-color:#eee; color:#000;}#nav div{display:none; border:1px solid #000; border-top:none}</style><script type="text/javascript">function $(id){return document.getElementById(id)}window.onload = function(){ $("nav").onclick = function(e){ var src = e?e.target:event.srcElement; if(src.tagName == "H3"){  var next = src.nextElementSibling || src.nextSibling;  next.style.display = (next.style.display =="block")?"none":"block"; } }}</script></head><body><div id="nav"> <h3>管理区</h3>  <div>   <a href="#">建议</a>    <a href="#">链接</a>    <a href="#">联系</a>  </div>  <h3>交流区</h3>  <div>   <a href="#">JavaScript</a>    <a href="#">Delphi</a>    <a href="#">VC++</a>  </div></div></body></html>

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

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