我正在尝试更改单击事件中的某个 div 元素。我的问题是如何选择这个元素?例如,
$("#a").live('click', function(){
$('.b').html('text') // I want to change class 'b' inside $(this).parent() and not all 'b' classes
});
我正在尝试更改单击事件中的某个 div 元素。我的问题是如何选择这个元素?例如,
$("#a").live('click', function(){
$('.b').html('text') // I want to change class 'b' inside $(this).parent() and not all 'b' classes
});
你可以用不止一种方法来做到这一点!
$('#el').on('click', function(){
$(this).parent().find('.something').text('new text');
});
$('#el').on('click', function(){
$(this).next('.something').text('new text'); //or closest
});
希望这可以帮助!
这可能会奏效:
$(this).find('.b').html('text');