0

我正在尝试更改单击事件中的某个 div 元素。我的问题是如何选择这个元素?例如,

$("#a").live('click', function(){
$('.b').html('text') // I want to change class 'b' inside  $(this).parent() and not all 'b' classes
});
4

2 回答 2

1

你可以用不止一种方法来做到这一点!

单程

$('#el').on('click', function(){
 $(this).parent().find('.something').text('new text'); 
});

这是另一种方式

$('#el').on('click', function(){
 $(this).next('.something').text('new text'); //or closest
});

希望这可以帮助!

于 2013-07-07T15:34:53.063 回答
1

这可能会奏效:

$(this).find('.b').html('text');
于 2013-07-07T15:14:55.233 回答