视频

//2. 鼠标移动切换二级导航菜单的切换显示和隐藏
/*
1.对哪个/些元素绑定什么监听?
2.对哪个/些元素进行什么DOM操作? 
*/ 
function subMenu() {
  $('#category_items .cate_item').hover(function () {
    $(this).children('.sub_cate_box').show()
  }, function () {
    $(this).children('.sub_cate_box').hide()
  })
}

posted on 2023-01-22 17:35  垂序葎草  阅读(87)  评论(0)    收藏  举报