码迷,mamicode.com
首页 > Web开发 > 详细

二级导航 js

时间:2018-12-28 10:44:58      阅读:178      评论:0      收藏:0      [点我收藏+]

标签:out   mouse   show   完成   hid   导航   div   move   ssi   

$(function(){
    $(".classify dl dd").mouseover(function(){
      $(this).addClass("on");
      $(this).children("ul").show();
  })
})
// 关键二:正确使用jQuey的语法完成行为。
$(function(){
   $(".classify dl dd") .mouseout(function(){
     $(this).removeClass(‘on‘);
     $(this).children("ul").hide();
  })
})

 

二级导航 js

标签:out   mouse   show   完成   hid   导航   div   move   ssi   

原文地址:https://www.cnblogs.com/qing1304197382/p/10188776.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!