Fork me on GitHub

简单二级导航JQ事件代码

$(function()){

  $("li").hover(function(){

    $(this).children("dl").show()

  },function(){

    $(this).children("dl").hide()

  })

})

posted @ 2018-10-25 14:26  big2cat  阅读(363)  评论(0)    收藏  举报