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

时间:2010-06-02 11:28:46

标签: jquery html css

我有很多带有嵌套div .title的div框,里面有一个按钮。有没有办法在jQuery中选择按钮的父级?

类似的东西:

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

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

3 个答案:

答案 0 :(得分:6)

试试这个:

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

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

答案 1 :(得分:6)

给它一个旋转(在该按钮的事件处理程序内):

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

答案 2 :(得分:1)

jQuery.parent()

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