jquery编辑1级导航条控制2级的显示与隐藏

这是导航条,鼠标悬停在1级导航的时候,2级会显示,但是鼠标想要移到2级导航的时候,2级就自动就收起来了。--点不到2级导航的内容啊。。请问该如何做,这是代码:... 这是导航条,鼠标悬停在1级导航的时候,2级会显示,但是鼠标想要移到2级导航的时候,2级就自动就收起来了。- -点不到2级导航的内容啊。。
请问该如何做,这是代码:
展开
 我来答
保谷枫75
推荐于2016-11-29 · TA获得超过692个赞
知道小有建树答主
回答量:444
采纳率:100%
帮助的人:216万
展开全部
<!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>类似于Jquery的JS下拉菜单</title>
<style type="text/css">
* { margin: 0; padding: 0; font-style: normal; font-family: 宋体; }
body { text-align: center; font-size: 12px; }
#content { margin: 0 auto; width: 600px; }
#content #nav { height: 32px; margin-top: 60px; background-color: #464749; }
#content #nav ul { list-style: none; }
#content #nav ul li { float: left; width: 100px; line-height: 32px; position: relative; }
#nav div { width: 100px; position: absolute; left: 0px; padding-bottom: 0px; float: left; height: 0; overflow: hidden; background-color: #23abf1; }
#content #nav li .a { text-decoration: none; color: #FFFFFF; line-height: 32px; display: block; border-right-width: 1px; border-right-style: solid; border-right-color: #393A3C; }
#nav div a { text-decoration: none; color: #FFFFFF; line-height: 26px; display: block; }
#nav div a:hover { background-color: #0C7DBA; }
</style>
</head>
<body>
<div id="content">
  <div id="nav">
    <ul id="supnav">
      <li><a href="#" class="a">导航菜单</a>
        <div>
         <a href="#">导航菜单</a> 
            <a href="#">导航菜单</a> 
            <a href="#">导航菜单</a> 
            <a href="#">导航菜单</a> 
            <a href="#">导航菜单</a> 
        </div>
      </li>
      <li><a href="#" class="a">导航菜单</a>
        <div> 
         <a href="#">导航菜单</a> 
            <a href="#">导航菜单</a> 
            <a href="#">导航菜单</a> 
            <a href="#">导航菜单</a> 
            <a href="#">导航菜单</a> 
            <a href="#">导航菜单</a> 
            <a href="#">导航菜单</a> 
            <a href="#">导航菜单</a> 
        </div>
      </li>
      <li><a href="#" class="a">导航菜单</a>
        <div> 
         <a href="#">导航菜单</a> 
            <a href="#">导航菜单</a> 
            <a href="#">导航菜单</a> 
            <a href="#">导航菜单</a> 
            <a href="#">导航菜单</a> 
            <a href="#">导航菜单</a> 
            <a href="#">导航菜单</a> 
        </div>
      </li>
      <li><a href="#" class="a">导航菜单</a>
        <div> 
         <a href="#">导航菜单</a> 
         <a href="#">导航菜单</a> 
            <a href="#">导航菜单</a> 
            <a href="#">导航菜单</a> 
            <a href="#">导航菜单</a> 
            <a href="#">导航菜单</a> 
            <a href="#">导航菜单</a> 
            <a href="#">导航菜单</a> 
            <a href="#">导航菜单</a> 
        </div>
      </li>
      <li><a href="#" class="a">导航菜单</a>
        <div> 
         <a href="#">导航菜单</a> 
            <a href="#">导航菜单</a>
            <a href="#">导航菜单</a> 
            <a href="#">导航菜单</a> 
            <a href="#">导航菜单</a> 
            <a href="#">导航菜单</a> 
            <a href="#">导航菜单</a> 
            <a href="#">导航菜单</a> 
            <a href="#">导航菜单</a> 
        </div>
      </li>
      <li><a href="#" class="a">导航菜单</a>
        <div> 
         <a href="#">导航菜单</a> 
            <a href="#">导航菜单</a> 
            <a href="#">导航菜单</a> 
            <a href="#">导航菜单</a> 
         </div>
      </li>
    </ul>
  </div>
</div>
<script type="text/javascript">
var supnav = document.getElementById("supnav");
var nav = document.getElementById("nav");
var btns = document.getElementsByTagName("li");
var subnavs = nav.getElementsByTagName("div");
var paddingbottom = 20;
var defaultHeight = 0;
function drop(obj, ivalue) {
var a = obj.offsetHeight;
var speed = (ivalue - obj.offsetHeight) / 8;
a += Math.floor(speed);
obj.style.height = a + "px";
}
window.onload = function() {
for (var i = 0; i < btns.length; i++) {
btns[i].index = i;
btns[i].onmouseover = function() {
var osubnav = subnavs[this.index];
var sublinks = osubnav.getElementsByTagName("a");
if (osubnav.firstChild.tagName == undefined) {
var itarheight = parseInt(osubnav.childNodes[1].offsetHeight) * sublinks.length + paddingbottom;
} else {
var itarheight = parseInt(osubnav.firstChild.offsetHeight) * sublinks.length + paddingbottom;
}
clearInterval(this.itimer);
this.itimer = setInterval(function() {
drop(osubnav, itarheight);
},
30);
}
btns[i].onmouseout = function() {
var osubnav = subnavs[this.index];
clearInterval(this.itimer);
this.itimer = setInterval(function() {
drop(osubnav, defaultHeight);
},
30);
}
}
}
</script>
</body>
</html>
追问
- -。大哥,JS看不懂呢。。可以来一份jquery的不。
追答

给 你个demo  

打开   修改下样式  内容 直接可以用!!jquery的!

记得 采纳!

推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式