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