代码之家  ›  专栏  ›  技术社区  ›  Kyle

jquery选择器:this.parent,有这样的东西吗?

  •  0
  • Kyle  · 技术社区  · 14 年前

    我有很多带有嵌套DIV的DIV框 .title S,里面有一个按钮。jquery中是否有选择按钮父级的方法?

    类似:

    $("#button").click(function(){       
           $("this.parent").css({'border-bottom' : 'none'});
           }); 
    

    或者我必须将所有的标题类重命名为唯一类?

    3 回复  |  直到 14 年前
        1
  •  6
  •   GlenCrawford    14 年前

    试一试(在该按钮的事件处理程序中):

    $(this).parent().css({'border-bottom' : 'none'});
    
        2
  •  6
  •   ant    14 年前

    试试这个:

    $("#button").click(function(){       
           $(this).parent().css({'border-bottom' : 'none'});
           });
    

    $(this).parent("div").css({'border-bottom' : 'none'});

        3
  •  1
  •   Anpher    14 年前

    jQuery.parent()

    $(function(){
      $("div.title a").click(function(){
        $(this).parent().css("background-color", "red");
        return false;
      });
    });