jquery traversing to find a parent's parent

前端 未结 7 565
谎友^
谎友^ 2021-01-14 08:58

HTML:

  • 7条回答
    •  悲&欢浪女
      2021-01-14 09:59

      Use the following code:

      $(function(){
          $("a").click(function(){
              $(this).parents("li").hide();
          })
      })
      

      http://jsfiddle.net/4yCux/1/

    提交回复
  • 热议问题