我有很多带有嵌套div .title
的div框,里面有一个按钮。有没有办法在jQuery中选择按钮的父级?
类似的东西:
$("#button").click(function(){
$("this.parent").css({'border-bottom' : 'none'});
});
或者我是否必须将所有标题类重命名为唯一的类?
答案 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)
$(function(){
$("div.title a").click(function(){
$(this).parent().css("background-color", "red");
return false;
});
});